From 68485596c47a884b453e4632b59b525527293e17 Mon Sep 17 00:00:00 2001 From: kils Date: Wed, 31 Jul 2024 02:20:47 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20=E4=BF=AE=E6=94=B9=20sys=5Foption=20sq?= =?UTF-8?q?l=20=E8=84=9A=E6=9C=AC=E4=BB=A5=E9=80=82=E9=85=8D=20base64=20?= =?UTF-8?q?=E5=9B=BE=E7=89=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../resources/db/changelog/mysql/continew-admin_table.sql | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/continew-admin-webapi/src/main/resources/db/changelog/mysql/continew-admin_table.sql b/continew-admin-webapi/src/main/resources/db/changelog/mysql/continew-admin_table.sql index ab4ad23c..cf75451f 100644 --- a/continew-admin-webapi/src/main/resources/db/changelog/mysql/continew-admin_table.sql +++ b/continew-admin-webapi/src/main/resources/db/changelog/mysql/continew-admin_table.sql @@ -319,3 +319,8 @@ CREATE TABLE IF NOT EXISTS `gen_field_config` ( `create_time` datetime NOT NULL COMMENT '创建时间', INDEX `idx_table_name`(`table_name`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='字段配置表'; + +-- changeset kils:3.2.0-1 +ALTER TABLE `sys_option` + MODIFY COLUMN `value` longtext DEFAULT NULL COMMENT '值', + MODIFY COLUMN `default_value` longtext DEFAULT NULL COMMENT '默认值'; \ No newline at end of file