diff --git a/database/migrations/2024_04_09_095517_make_custom_docker_commands_longer.php b/database/migrations/2024_04_09_095517_make_custom_docker_commands_longer.php new file mode 100644 index 000000000..7df53ec06 --- /dev/null +++ b/database/migrations/2024_04_09_095517_make_custom_docker_commands_longer.php @@ -0,0 +1,29 @@ +text('custom_docker_run_options')->nullable()->change(); + + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('applications', function (Blueprint $table) { + $table->string('custom_docker_run_options')->nullable()->change(); + }); + } +};