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