text('domain_name')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('settings', function ($table) { $table->dropColumn('domain_name'); }); } };