From 2003692bfe70a6a3a91916acb06d80b8a244f7e6 Mon Sep 17 00:00:00 2001 From: tian <156691306@qq.com> Date: Mon, 25 Aug 2025 15:51:40 +0800 Subject: [PATCH] create_ufutx_admin_v2_workflow_notice --- ...08293_create_ufutx_admin_v2_workflow_notice.up.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 1756108293_create_ufutx_admin_v2_workflow_notice.up.sql diff --git a/1756108293_create_ufutx_admin_v2_workflow_notice.up.sql b/1756108293_create_ufutx_admin_v2_workflow_notice.up.sql new file mode 100644 index 0000000..7b18c73 --- /dev/null +++ b/1756108293_create_ufutx_admin_v2_workflow_notice.up.sql @@ -0,0 +1,11 @@ +CREATE TABLE `health`.`ufutx_admin_v2_workflow_notice` ( + `id` BIGINT NOT NULL AUTO_INCREMENT , + `admin_user_id` BIGINT NOT NULL COMMENT '管理员用户id' , + `admin_user_name` VARCHAR(512) NOT NULL COMMENT '管理员用户名' , + `notice_id` BIGINT NOT NULL COMMENT '消息id' , + `wechat_official_account_openid` VARCHAR(256) NOT NULL COMMENT '有福同享公众号openid' , + `status` TINYINT NOT NULL DEFAULT '1' COMMENT '1=订阅,2=取消订阅' , + `created_at` TIMESTAMP NULL DEFAULT NULL , + `updated_at` TIMESTAMP NULL DEFAULT NULL , + PRIMARY KEY (`id`) +) ENGINE = InnoDB COMMENT = 'v2流程公众号通知'; \ No newline at end of file