Increase discount max in database
This commit is contained in:
parent
6ccdc5802d
commit
c7e2a2aa2b
1 changed files with 4 additions and 0 deletions
|
|
@ -31,6 +31,10 @@ class AddSubscriptionFormat extends Migration
|
|||
$table->string('document_key')->nullable()->unique();
|
||||
});
|
||||
|
||||
Schema::table('invoices', 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