Fix product name nullability in migration

This commit is contained in:
Nisse Lommerde 2025-04-07 19:44:04 -04:00
parent 4500ce0c27
commit 07c250eaac

View File

@ -12,7 +12,7 @@ public function up(): void
$table->id();
$table->foreignId('order_id')->constrained();
$table->string('sku')->nullable();
$table->string('product_name');
$table->string('product_name')->nullable();
$table->string('color')->nullable();
$table->softDeletes();