From 4d08147647ca990d0f9e666b2625e7f105958855 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Wed, 22 May 2024 12:41:22 +0200 Subject: [PATCH] chore: Change pre and post deployment command length in applications table --- ...oyment_commands_length_in_applications.php | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 database/migrations/2024_05_22_103942_change_pre_post_deployment_commands_length_in_applications.php diff --git a/database/migrations/2024_05_22_103942_change_pre_post_deployment_commands_length_in_applications.php b/database/migrations/2024_05_22_103942_change_pre_post_deployment_commands_length_in_applications.php new file mode 100644 index 000000000..0803c9778 --- /dev/null +++ b/database/migrations/2024_05_22_103942_change_pre_post_deployment_commands_length_in_applications.php @@ -0,0 +1,30 @@ +text('post_deployment_command')->nullable()->change(); + $table->text('pre_deployment_command')->nullable()->change(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('applications', function (Blueprint $table) { + $table->string('post_deployment_command')->nullable()->change(); + $table->string('pre_deployment_command')->nullable()->change(); + }); + } +};