From ee5a2b3c3874ca4a4dc905980a8d3ff88329fe99 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 9 Apr 2024 11:58:14 +0200 Subject: [PATCH] Add migration to make custom docker commands longer --- ...517_make_custom_docker_commands_longer.php | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 database/migrations/2024_04_09_095517_make_custom_docker_commands_longer.php 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(); + }); + } +};