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 b298eeb46708..5f03420d594c 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 @@ -21,6 +21,7 @@ return new class extends Migration Schema::table('companies', function (Illuminate\Database\Schema\Blueprint $table) { $table->mediumText('tax_data')->nullable()->change(); + $table->dropColumn('tax_all_products'); }); }