From ebe78ce9d364951eeae9b83dca057fb033cee63a Mon Sep 17 00:00:00 2001 From: buke <1312023945@qq.com> Date: Fri, 18 Oct 2024 11:15:58 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9B=E5=BB=BAdma=E6=B5=81=E7=A8=8B?= =?UTF-8?q?=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 1729221328_create_table_dma_process.up.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 1729221328_create_table_dma_process.up.sql diff --git a/1729221328_create_table_dma_process.up.sql b/1729221328_create_table_dma_process.up.sql new file mode 100644 index 0000000..1ea12d9 --- /dev/null +++ b/1729221328_create_table_dma_process.up.sql @@ -0,0 +1,9 @@ +CREATE TABLE `ufutx_dma_process` ( + `id` int(11) unsigned NOT NULL AUTO_INCREMENT, + `user_id` int(11) NOT NULL COMMENT '用户id', + `content` text 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='dma流程图'; \ No newline at end of file