|
|
@@ -20,7 +20,7 @@ return new class extends Migration
|
|
|
$table->decimal('discount_percentage');
|
|
|
$table->decimal('rating');
|
|
|
$table->unsignedBigInteger('stock');
|
|
|
- $table->string('brand');
|
|
|
+ $table->string('brand')->nullable();
|
|
|
$table->string('sku');
|
|
|
$table->decimal('weight');
|
|
|
$table->decimal('width');
|
|
|
@@ -34,7 +34,6 @@ return new class extends Migration
|
|
|
$table->string('barcode');
|
|
|
$table->text('qr_code');
|
|
|
$table->text('thumbnail');
|
|
|
- $table->timestamps();
|
|
|
});
|
|
|
}
|
|
|
|