From 2244bc4cf15b2891c0cdc45950611cccb660ca0b Mon Sep 17 00:00:00 2001 From: a6a2f5842 Date: Fri, 21 Nov 2025 15:13:52 +0100 Subject: [PATCH] BF default json --- database/migrations/create_blax_shop_tables.php.stub | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/create_blax_shop_tables.php.stub b/database/migrations/create_blax_shop_tables.php.stub index 2648301..7d8d5f1 100644 --- a/database/migrations/create_blax_shop_tables.php.stub +++ b/database/migrations/create_blax_shop_tables.php.stub @@ -41,7 +41,7 @@ return new class extends Migration $table->string('status')->default('draft'); // draft, published, archived $table->timestamp('published_at')->nullable(); $table->integer('sort_order')->default(0); - $table->json('meta')->default('{}'); + $table->json('meta')->nullable(); $table->string('tax_class')->nullable(); $table->timestamps(); $table->softDeletes();