From 3945b9e85f11ab7c008ae7fb9619ee18e1482b29 Mon Sep 17 00:00:00 2001 From: Hankin Date: Tue, 12 May 2026 10:10:32 +0800 Subject: [PATCH] service certy --- 1778550089_create_service_cert.up.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 1778550089_create_service_cert.up.sql diff --git a/1778550089_create_service_cert.up.sql b/1778550089_create_service_cert.up.sql new file mode 100644 index 0000000..d927c4b --- /dev/null +++ b/1778550089_create_service_cert.up.sql @@ -0,0 +1,9 @@ +CREATE TABLE `health`.`ufutx_service_cert` ( + `id` INT NOT NULL AUTO_INCREMENT, + `user_id` INT NOT NULL COMMENT "用户id", + `type` TINYINT DEFAULT 1 COMMENT '证书类型 1:友福;2:第三方1,3:第三方2', + `pic` VARCHAR(191) DEFAULT 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