Increase discount max in database

This commit is contained in:
Hillel Coren 2018-02-14 22:49:47 +02:00
parent 6ccdc5802d
commit c7e2a2aa2b

View File

@ -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');