id(); $table->uuid('uuid')->unique(); $table->string('code')->unique(); // e.g. fsn, hel — used by hosts.datacenter + placement $table->string('name'); $table->string('location')->nullable(); $table->boolean('active')->default(true); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('datacenters'); } };