From 48b3cdca67d4a9d81859267e54ebc85ef4aa8d0b Mon Sep 17 00:00:00 2001 From: fengshuonan Date: Mon, 21 Nov 2022 23:15:56 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=907.3.3=E3=80=91=E7=B3=BB=E7=BB=9F?= =?UTF-8?q?=E9=80=9A=E7=9F=A5=E8=A1=A8=E5=A2=9E=E5=8A=A0=E9=80=9A=E7=9F=A5?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../migration/mysql/V7.3.3_20221121_2307__add_notice_type.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/main/resources/db/migration/mysql/V7.3.3_20221121_2307__add_notice_type.sql 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