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