From 25779f13f476ea0b3eaa84b1821ca31399d8fe9a Mon Sep 17 00:00:00 2001 From: taojinlong Date: Thu, 13 Jun 2024 17:26:29 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=AF=BC=E5=87=BA=E4=B8=AD=E5=BF=83?= =?UTF-8?q?=E5=AF=BC=E5=87=BA=E5=A4=B1=E8=B4=A5=E6=97=B6=EF=BC=8C=E7=BB=99?= =?UTF-8?q?=E5=87=BA=E5=A4=B1=E8=B4=A5=E5=8E=9F=E5=9B=A0=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=EF=BC=8C=E6=96=B9=E4=BE=BF=E9=97=AE=E9=A2=98=E6=8E=92=E6=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-backend/src/main/resources/db/migration/V2.8__ddl.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 core/core-backend/src/main/resources/db/migration/V2.8__ddl.sql diff --git a/core/core-backend/src/main/resources/db/migration/V2.8__ddl.sql b/core/core-backend/src/main/resources/db/migration/V2.8__ddl.sql new file mode 100644 index 0000000000..9ac0579979 --- /dev/null +++ b/core/core-backend/src/main/resources/db/migration/V2.8__ddl.sql @@ -0,0 +1 @@ +ALTER TABLE `core_export_task` ADD COLUMN `msg` LONGTEXT NULL COMMENT '错误信息' AFTER `params`;