diff --git a/app/Listeners/Updates/v2/Version201.php b/app/Listeners/Updates/v2/Version201.php index 25a4ad82..2d457610 100644 --- a/app/Listeners/Updates/v2/Version201.php +++ b/app/Listeners/Updates/v2/Version201.php @@ -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) {