浏览代码

Merge branch 'master' of https://git.cecmartech.com/DC/Moderna-Survey

Sherry 1年前
父节点
当前提交
9b23ed61e4
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      src/be/database/migrations/2023_09_27_035029_create_surveys_table.php

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

@@ -14,9 +14,9 @@ return new class extends Migration
14 14
         Schema::create('surveys', function (Blueprint $table) {
15 15
             $table->increments('id')->comment('PKey');
16 16
             $table->string("line_user_id")->comment("填寫人Line UID");
17
-            $table->string("head_sticker")->comment("填寫人頭貼");
17
+            $table->longText("head_sticker")->comment("填寫人頭貼");
18 18
             $table->string("nickname")->comment("暱稱");
19
-            $table->text("filler_content")->comment("問卷填寫內容");
19
+            $table->longText("filler_content")->comment("問卷填寫內容");
20 20
             $table->timestamps();
21 21
         });
22 22
     }