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

Merge branch 'master' of github.com:hillelcoren/invoice-ninja

This commit is contained in:
Hillel Coren 2016-01-23 23:36:38 +02:00
commit fbbc96b1aa

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