|
@@ -17,7 +17,7 @@ class CreateSearchInfoTable extends Migration
|
|
$table->increments('id');
|
|
$table->increments('id');
|
|
$table->integer('user_id')->comment('用户ID');
|
|
$table->integer('user_id')->comment('用户ID');
|
|
$table->string('search')->comment('搜索内容');
|
|
$table->string('search')->comment('搜索内容');
|
|
- $table->integer('times')->comment('搜索次数');
|
|
|
|
|
|
+ $table->integer('times')->default(0)->comment('搜索次数');
|
|
$table->timestamps();
|
|
$table->timestamps();
|
|
});
|
|
});
|
|
}
|
|
}
|