| xqd
@@ -16,7 +16,7 @@ class CreateTableCustomerCatRecord extends Migration
|
|
|
Schema::create('customer_cat_record', function (Blueprint $table) {
|
|
|
$table->increments('id');
|
|
|
$table->unsignedInteger('store_id')->comment('store_id');
|
|
|
- $table->unsignedInteger('open_id')->comment('open_id');
|
|
|
+ $table->string('open_id',255)->comment('open_id');
|
|
|
$table->unsignedInteger('agent_id')->comment('agent_id');
|
|
|
$table->unsignedInteger('cat_id')->comment('cat_id');
|
|
|
$table->unsignedInteger('style_id')->comment('style_id');
|