1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 05:32:39 +01:00

Merge pull request #646 from hannenijhuis/master

Fixed vendors table migration setting unique after filling values
This commit is contained in:
Hillel Coren 2016-01-23 23:09:57 +02:00
commit 55f457d258

View File

@ -117,6 +117,10 @@ class CreateVendorsTable extends Migration
Schema::table('invoices', function (Blueprint $table) {
$table->boolean('has_expenses')->default(false);
});
Schema::table('payment_terms', function (Blueprint $table) {
$table->unique(array('account_id', 'public_id'));
});
}
/**