build version 201

This commit is contained in:
raishvaria
2019-12-04 16:51:22 +05:30
parent 339099bd34
commit 887ad9a73d
3 changed files with 5 additions and 2 deletions

View File

@ -68,13 +68,16 @@ class Version201 extends Listener
\Schema::table('invoices', function (Blueprint $table) {
$table->decimal('discount', 15, 2)->nullable()->change();
});
\Schema::table('estimates', function (Blueprint $table) {
$table->decimal('discount', 15, 2)->nullable()->change();
});
\Schema::table('invoice_items', function (Blueprint $table) {
$table->decimal('quantity', 15, 2)->change();
$table->decimal('discount', 15, 2)->nullable()->change();
});
\Schema::table('estimate_items', function (Blueprint $table) {
$table->decimal('quantity', 15, 2)->change();
$table->decimal('discount', 15, 2)->nullable()->change();