|
|
|
|
13
|
{
|
13
|
{
|
14
|
Schema::create('tags', function (Blueprint $table) {
|
14
|
Schema::create('tags', function (Blueprint $table) {
|
15
|
$table->increments('id')->comment('PKey');
|
15
|
$table->increments('id')->comment('PKey');
|
16
|
- $table->int('tag_category_id')->comment('標籤分類');
|
|
|
|
|
16
|
+ $table->integer('tag_category_id')->comment('標籤分類');
|
17
|
$table->string("bot_tag_id")->comment('bot 標籤ID');
|
17
|
$table->string("bot_tag_id")->comment('bot 標籤ID');
|
18
|
$table->string("tag_name")->comment('標籤名稱');
|
18
|
$table->string("tag_name")->comment('標籤名稱');
|
19
|
$table->timestamps();
|
19
|
$table->timestamps();
|