From 6a948b30911b789216611d996b6db40f272990e7 Mon Sep 17 00:00:00 2001 From: wenyann <64353056+wenyann@users.noreply.github.com> Date: Mon, 8 Feb 2021 17:27:18 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9id=E9=95=BF=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../db/migration/V74__modify_schedule_message_task.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 backend/src/main/resources/db/migration/V74__modify_schedule_message_task.sql diff --git a/backend/src/main/resources/db/migration/V74__modify_schedule_message_task.sql b/backend/src/main/resources/db/migration/V74__modify_schedule_message_task.sql new file mode 100644 index 0000000000..0acb8fc2cd --- /dev/null +++ b/backend/src/main/resources/db/migration/V74__modify_schedule_message_task.sql @@ -0,0 +1,4 @@ +ALTER TABLE schedule + MODIFY COLUMN id VARCHAR(255); +ALTER TABLE message_task + MODIFY COLUMN id VARCHAR(255);