boolean('exclude_from_status')->default(false); $table->string('image')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('service_databases', function (Blueprint $table) { $table->dropColumn('exclude_from_status'); $table->dropColumn('image'); }); } };