From 152bbbe36307ac857a9c12e45443ca9b08974f2d Mon Sep 17 00:00:00 2001 From: Hankin Date: Tue, 1 Jul 2025 11:21:36 +0800 Subject: [PATCH] consult log --- 1751337610_create_consult_log.up.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 1751337610_create_consult_log.up.sql diff --git a/1751337610_create_consult_log.up.sql b/1751337610_create_consult_log.up.sql new file mode 100644 index 0000000..96967b0 --- /dev/null +++ b/1751337610_create_consult_log.up.sql @@ -0,0 +1,8 @@ +CREATE TABLE `ufutx_consult_log` ( + `id` bigint(20) UNSIGNED PRIMARY KEY NOT NULL AUTO_INCREMENT, + `name` varchar(191) NOT NULL comment "姓名", + `mobile` varchar(191) NOT NULL comment "手机号", + `demand` text default NULL comment "需求", + `created_at` timestamp null default null, + `updated_at` timestamp null default null +) ENGINE = InnoDB COMMENT = '合作咨询'; \ No newline at end of file