From 5c5a6af20475f05d97c01f855ad3fd7c052bb899 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sun, 1 May 2022 15:29:26 +1000 Subject: [PATCH] Clean up migrations --- ...nvert_custom_fields_column_from_varchar_to_text.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/database/migrations/2022_04_26_032252_convert_custom_fields_column_from_varchar_to_text.php b/database/migrations/2022_04_26_032252_convert_custom_fields_column_from_varchar_to_text.php index 77a4f065f3..47d4da044a 100644 --- a/database/migrations/2022_04_26_032252_convert_custom_fields_column_from_varchar_to_text.php +++ b/database/migrations/2022_04_26_032252_convert_custom_fields_column_from_varchar_to_text.php @@ -43,15 +43,6 @@ class ConvertCustomFieldsColumnFromVarcharToText extends Migration }); - Schema::table('clients', function (Blueprint $table) { - - $table->text('custom_value1')->change(); - $table->text('custom_value2')->change(); - $table->text('custom_value3')->change(); - $table->text('custom_value4')->change(); - - }); - Schema::table('documents', function (Blueprint $table) { $table->text('custom_value1')->change(); @@ -178,7 +169,6 @@ class ConvertCustomFieldsColumnFromVarcharToText extends Migration }); - } /**