remove qty from inoice & estimate migration change

This commit is contained in:
raishvaria
2019-12-04 16:43:21 +05:30
parent 9b9761aa5a
commit 339099bd34

View File

@ -66,11 +66,9 @@ class Version201 extends Listener
private function changeMigrations()
{
\Schema::table('invoices', function (Blueprint $table) {
$table->decimal('quantity', 15, 2)->change();
$table->decimal('discount', 15, 2)->nullable()->change();
});
\Schema::table('estimates', function (Blueprint $table) {
$table->decimal('quantity', 15, 2)->change();
$table->decimal('discount', 15, 2)->nullable()->change();
});
\Schema::table('invoice_items', function (Blueprint $table) {