BF default json

This commit is contained in:
a6a2f5842 2025-11-21 15:13:52 +01:00
parent bfc6e729f5
commit 2244bc4cf1
1 changed files with 1 additions and 1 deletions

View File

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