mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
Increase discount max in database
This commit is contained in:
parent
c7e2a2aa2b
commit
a268fdaf38
@ -35,6 +35,10 @@ class AddSubscriptionFormat extends Migration
|
|||||||
$table->decimal('discount', 13, 2)->change();
|
$table->decimal('discount', 13, 2)->change();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Schema::table('invoice_items', function ($table) {
|
||||||
|
$table->decimal('discount', 13, 2)->change();
|
||||||
|
});
|
||||||
|
|
||||||
Schema::create('proposal_categories', function ($table) {
|
Schema::create('proposal_categories', function ($table) {
|
||||||
$table->increments('id');
|
$table->increments('id');
|
||||||
$table->unsignedInteger('account_id');
|
$table->unsignedInteger('account_id');
|
||||||
|
Loading…
Reference in New Issue
Block a user