Merge pull request #8426 from turbo124/v5-develop

Fixes for migrations
This commit is contained in:
David Bomba 2023-04-04 07:42:38 +10:00 committed by GitHub
commit 198ef9c268
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,10 +26,6 @@ return new class extends Migration
$table->mediumText('tax_data')->nullable()->change(); $table->mediumText('tax_data')->nullable()->change();
$table->dropColumn('tax_all_products'); $table->dropColumn('tax_all_products');
}); });
Schema::table('products', function (Blueprint $table) {
$table->unsignedInteger('tax_id')->nullable(); // the product tax constant
});
Company::query() Company::query()
->cursor() ->cursor()