From a59f97d0cdab7f4880a31674782605422333f974 Mon Sep 17 00:00:00 2001 From: fengshuonan Date: Tue, 22 Nov 2022 00:04:27 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=907.3.3=E3=80=91=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E6=B6=88=E6=81=AF=E8=B7=B3=E8=BD=AC=E7=9A=84url=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../migration/mysql/V7.3.3_20221121_2307__add_message_url.sql | 2 ++ .../migration/mysql/V7.3.3_20221121_2307__add_notice_type.sql | 3 --- 2 files changed, 2 insertions(+), 3 deletions(-) create mode 100644 src/main/resources/db/migration/mysql/V7.3.3_20221121_2307__add_message_url.sql delete 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_message_url.sql b/src/main/resources/db/migration/mysql/V7.3.3_20221121_2307__add_message_url.sql new file mode 100644 index 00000000..d5b6de38 --- /dev/null +++ b/src/main/resources/db/migration/mysql/V7.3.3_20221121_2307__add_message_url.sql @@ -0,0 +1,2 @@ +ALTER TABLE `sys_message` + ADD COLUMN `message_url` varchar(500) NULL COMMENT '消息跳转的URL' AFTER `message_type`; \ No newline at end of file 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 deleted file mode 100644 index 1077da6f..00000000 --- a/src/main/resources/db/migration/mysql/V7.3.3_20221121_2307__add_notice_type.sql +++ /dev/null @@ -1,3 +0,0 @@ -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