update variant
This commit is contained in:
parent
dfbd3cc04d
commit
a64bff4f6f
|
|
@ -84,7 +84,7 @@ class CreateTables extends Migration
|
|||
Schema::create('product_skus', function (Blueprint $table) {
|
||||
$table->id()->startingValue(100_000);
|
||||
$table->unsignedBigInteger('product_id');
|
||||
$table->string('variants')->nullable();
|
||||
$table->json('variants')->nullable();
|
||||
$table->integer('position')->default(0);
|
||||
$table->string('image')->default('');
|
||||
$table->string('model')->default('');
|
||||
|
|
|
|||
Loading…
Reference in New Issue