OMEGA\ericyh.huang 1 年之前
父節點
當前提交
310f1a479f
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      src/be/database/migrations/2023_09_27_035029_create_surveys_table.php

+ 1
- 1
src/be/database/migrations/2023_09_27_035029_create_surveys_table.php 查看文件

@@ -16,7 +16,7 @@ return new class extends Migration
16 16
             $table->string("line_user_id")->comment("填寫人Line UID");
17 17
             $table->string("head_sticker")->comment("填寫人頭貼");
18 18
             $table->string("nickname")->comment("暱稱");
19
-            $table->string("filler_content")->comment("問卷填寫內容");
19
+            $table->text("filler_content")->comment("問卷填寫內容");
20 20
             $table->timestamps();
21 21
         });
22 22
     }