From 52197bef68f4e62e8c5fdd4a911fa57dee1627dc Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 18 May 2022 15:57:08 +1000 Subject: [PATCH] Custom value 4 update to text column --- ...55442_update_custom_value_four_columns.php | 142 ++++++++++++++++++ 1 file changed, 142 insertions(+) create mode 100644 database/migrations/2022_05_18_055442_update_custom_value_four_columns.php diff --git a/database/migrations/2022_05_18_055442_update_custom_value_four_columns.php b/database/migrations/2022_05_18_055442_update_custom_value_four_columns.php new file mode 100644 index 000000000000..257cf3556cea --- /dev/null +++ b/database/migrations/2022_05_18_055442_update_custom_value_four_columns.php @@ -0,0 +1,142 @@ +text('custom_value4')->change(); + + }); + + Schema::table('client_contacts', function (Blueprint $table) { + + $table->text('custom_value4')->change(); + + }); + + Schema::table('clients', function (Blueprint $table) { + + $table->text('custom_value4')->change(); + + }); + + Schema::table('clients', function (Blueprint $table) { + + $table->text('custom_value4')->change(); + + }); + + Schema::table('documents', function (Blueprint $table) { + + $table->text('custom_value4')->change(); + + }); + + Schema::table('expenses', function (Blueprint $table) { + + $table->text('custom_value4')->change(); + + }); + + Schema::table('invoices', function (Blueprint $table) { + + $table->text('custom_value4')->change(); + + }); + + Schema::table('payments', function (Blueprint $table) { + + $table->text('custom_value4')->change(); + + }); + + Schema::table('products', function (Blueprint $table) { + + $table->text('custom_value4')->change(); + + }); + + Schema::table('projects', function (Blueprint $table) { + + $table->text('custom_value4')->change(); + + }); + + Schema::table('quotes', function (Blueprint $table) { + + $table->text('custom_value4')->change(); + + }); + + Schema::table('recurring_invoices', function (Blueprint $table) { + + $table->text('custom_value4')->change(); + + }); + + Schema::table('recurring_quotes', function (Blueprint $table) { + + $table->text('custom_value4')->change(); + + }); + + Schema::table('recurring_expenses', function (Blueprint $table) { + + $table->text('custom_value4')->change(); + + }); + + Schema::table('tasks', function (Blueprint $table) { + + $table->text('custom_value4')->change(); + + }); + + Schema::table('users', function (Blueprint $table) { + + $table->text('custom_value4')->change(); + + }); + + Schema::table('vendors', function (Blueprint $table) { + + $table->text('custom_value4')->change(); + + }); + + Schema::table('vendor_contacts', function (Blueprint $table) { + + $table->text('custom_value4')->change(); + + }); + + } + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +}