From 71bc49c19a91ff11b561ab33d377ebfcff3874dc Mon Sep 17 00:00:00 2001 From: Hankin Date: Fri, 22 May 2026 15:26:22 +0800 Subject: [PATCH] user label --- 1779429968_create_service_user_label.up.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 1779429968_create_service_user_label.up.sql diff --git a/1779429968_create_service_user_label.up.sql b/1779429968_create_service_user_label.up.sql new file mode 100644 index 0000000..e2aa21a --- /dev/null +++ b/1779429968_create_service_user_label.up.sql @@ -0,0 +1,9 @@ +CREATE TABLE `health`.`ufutx_service_user_label` ( + `id` INT NOT NULL AUTO_INCREMENT, + `user_id` INT NOT NULL COMMENT "用户id", + `label` JSON NOT NULL COMMENT "标签", + `qrcode` VARCHAR(191) NOT NULL 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