OMEGA\ericyh.huang преди 1 година
родител
ревизия
aa24d55b72
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1
    1
      src/be/database/migrations/2023_09_27_035205_create_tags_table.php

+ 1
- 1
src/be/database/migrations/2023_09_27_035205_create_tags_table.php Целия файл

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();