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

Increase discount max in database

This commit is contained in:
Hillel Coren 2018-02-14 22:53:34 +02:00
parent c7e2a2aa2b
commit a268fdaf38

View File

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