Increase discount max in database
This commit is contained in:
parent
c7e2a2aa2b
commit
a268fdaf38
1 changed files with 4 additions and 0 deletions
|
|
@ -35,6 +35,10 @@ class AddSubscriptionFormat extends Migration
|
|||
$table->decimal('discount', 13, 2)->change();
|
||||
});
|
||||
|
||||
Schema::table('invoice_items', function ($table) {
|
||||
$table->decimal('discount', 13, 2)->change();
|
||||
});
|
||||
|
||||
Schema::create('proposal_categories', function ($table) {
|
||||
$table->increments('id');
|
||||
$table->unsignedInteger('account_id');
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue