From 406b7cc3c9798031362586925fbeb87c9c80720d Mon Sep 17 00:00:00 2001 From: buke <1312023945@qq.com> Date: Fri, 11 Oct 2024 15:59:39 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B9=E6=A1=88=E5=89=8D=E9=97=AE=E5=8D=B7?= =?UTF-8?q?=E8=B0=83=E6=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 1728618375_create_table_dma_question.up.sql | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 1728618375_create_table_dma_question.up.sql diff --git a/1728618375_create_table_dma_question.up.sql b/1728618375_create_table_dma_question.up.sql new file mode 100644 index 0000000..6dc85b7 --- /dev/null +++ b/1728618375_create_table_dma_question.up.sql @@ -0,0 +1,16 @@ +CREATE TABLE `ufutx_dma_question` +( + `id` int(11) unsigned NOT NULL AUTO_INCREMENT, + `user_id` int(11) NOT NULL COMMENT '用户id', + `status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '状态 0:提交 1:通过 2:拒绝', + `step_one` text COMMENT '第一步问卷', + `step_two` text COMMENT '第二步问卷', + `step_three` text COMMENT '第三步问卷', + `step_four` text COMMENT '第四部问卷', + `step_five` text COMMENT '第五步问卷', + `remark` varchar(255) DEFAULT NULL COMMENT '备注', + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `user_id` (`user_id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='方案前问卷表'; \ No newline at end of file