id(); $table->string('domain', 191)->unique(); $table->boolean('is_active')->default(true)->index(); $table->boolean('is_system')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('domains'); } };