Merge branch 'master' of github.com:hillelcoren/invoice-ninja
This commit is contained in:
commit
fbbc96b1aa
1 changed files with 4 additions and 0 deletions
|
|
@ -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'));
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue