diff --git a/database/migrations/2023_03_24_054758_add_client_is_exempt_from_taxes.php b/database/migrations/2023_03_24_054758_add_client_is_exempt_from_taxes.php index 9de246de581d..a12dd1842458 100644 --- a/database/migrations/2023_03_24_054758_add_client_is_exempt_from_taxes.php +++ b/database/migrations/2023_03_24_054758_add_client_is_exempt_from_taxes.php @@ -26,10 +26,6 @@ return new class extends Migration $table->mediumText('tax_data')->nullable()->change(); $table->dropColumn('tax_all_products'); }); - - Schema::table('products', function (Blueprint $table) { - $table->unsignedInteger('tax_id')->nullable(); // the product tax constant - }); Company::query() ->cursor()