diff --git a/src/main/resources/db/migration/mysql/V7.3.3_20221121_2307__add_notice_type.sql b/src/main/resources/db/migration/mysql/V7.3.3_20221121_2307__add_notice_type.sql new file mode 100644 index 00000000..1077da6f --- /dev/null +++ b/src/main/resources/db/migration/mysql/V7.3.3_20221121_2307__add_notice_type.sql @@ -0,0 +1,3 @@ +ALTER TABLE `sys_notice` + ADD COLUMN `notice_type` tinyint NULL DEFAULT 1 COMMENT '通知类型:1-普通通知,2-带url跳转链接' AFTER `notice_content`, + ADD COLUMN `notice_url` varchar(500) NULL COMMENT '通知的完整跳转url' AFTER `notice_type`; \ No newline at end of file