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

Bug fix for migration down

This commit is contained in:
Hillel Coren 2016-03-01 11:27:10 +02:00
parent c5fdb2ca7d
commit e5fac72e01

View File

@ -43,7 +43,7 @@ class AddCustomInvoiceFields extends Migration
$table->dropColumn('devices');
});
Schema::table('accounts', function($table) {
Schema::table('invoice_items', function($table) {
$table->dropColumn('custom_value1');
$table->dropColumn('custom_value2');
});