id(); $table->string('name'); $table->string('slug')->unique(); $table->string('domain')->nullable()->unique(); $table->boolean('is_active')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('structures'); } };