1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00

Clean up migrations

This commit is contained in:
David Bomba 2022-05-01 15:29:26 +10:00
parent e72c8d93c2
commit 5c5a6af204

View File

@ -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
});
}
/**