id(); $table->foreignId('application_id')->constrained()->onDelete('cascade'); $table->foreignId('server_id')->constrained()->onDelete('cascade'); $table->string('status')->default('exited'); $table->foreignId('standalone_docker_id')->constrained()->onDelete('cascade'); $table->timestamps(); }); Schema::table('applications', function (Blueprint $table) { $table->dropColumn('additional_destinations'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('additional_destinations'); Schema::table('applications', function (Blueprint $table) { $table->string('additional_destinations')->nullable()->after('destination'); }); } };