From db641b29275ff97d5337bef650fe201c104fb47d Mon Sep 17 00:00:00 2001 From: liushaowen <565850092@qq.com> Date: Wed, 18 Nov 2020 16:46:03 +0800 Subject: [PATCH] =?UTF-8?q?user=5Fadvice=E4=BF=AE=E6=94=B9content=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../db/migration/V0.0.9__alter_useradvice_content.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 epmet-user/epmet-user-server/src/main/resources/db/migration/V0.0.9__alter_useradvice_content.sql diff --git a/epmet-user/epmet-user-server/src/main/resources/db/migration/V0.0.9__alter_useradvice_content.sql b/epmet-user/epmet-user-server/src/main/resources/db/migration/V0.0.9__alter_useradvice_content.sql new file mode 100644 index 0000000000..112c6b0e72 --- /dev/null +++ b/epmet-user/epmet-user-server/src/main/resources/db/migration/V0.0.9__alter_useradvice_content.sql @@ -0,0 +1,9 @@ +ALTER TABLE `user_advice` DROP COLUMN `ADVICE_CONTENT`; + +ALTER TABLE `user_advice` +ADD COLUMN `ADVICE_CONTENT` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '建议内容' NOT NULL AFTER `REG_PHONE`; + +ALTER TABLE `user_advice` DROP COLUMN `GOV_CONTENT`; + +ALTER TABLE `user_advice` +ADD COLUMN `GOV_CONTENT` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '建议回复内容' NULL AFTER `REPLY_TIME`;