string('custom_docker_run_options')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('applications', function (Blueprint $table) { $table->dropColumn('custom_docker_run_options'); }); } };