Fixes for migrations

This commit is contained in:
David Bomba 2023-04-04 07:42:22 +10:00
parent e14656129f
commit 1e1344e704

View File

@ -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()