From d9369d52add787f0ca37ed36e6fa7d153da823bc Mon Sep 17 00:00:00 2001 From: tian <156691306@qq.com> Date: Tue, 22 Apr 2025 16:23:32 +0800 Subject: [PATCH] create_ufutx_s2_user_login_qrcode_log --- 1745310195_create_ufutx_s2_user_login_qrcode_log.up.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 1745310195_create_ufutx_s2_user_login_qrcode_log.up.sql diff --git a/1745310195_create_ufutx_s2_user_login_qrcode_log.up.sql b/1745310195_create_ufutx_s2_user_login_qrcode_log.up.sql new file mode 100644 index 0000000..54bf7bd --- /dev/null +++ b/1745310195_create_ufutx_s2_user_login_qrcode_log.up.sql @@ -0,0 +1,8 @@ +CREATE TABLE `health`.`ufutx_s2_user_login_qrcode_log` ( + `id` BIGINT NOT NULL AUTO_INCREMENT , + `status` TINYINT NOT NULL DEFAULT '1' COMMENT '1=空闲,2=已扫码,3=已登录' , + `userid` INT NOT NULL DEFAULT '0' COMMENT '最终登录人' , + `created_at` TIMESTAMP NULL DEFAULT NULL , + `updated_at` TIMESTAMP NULL DEFAULT NULL , + PRIMARY KEY (`id`) +) ENGINE = InnoDB COMMENT = '用户扫码支付日志'; \ No newline at end of file