From 7ec6d84c7dfc0365e7cec6ef0b578a6f60f580cd Mon Sep 17 00:00:00 2001 From: Ulric Qin Date: Thu, 17 Mar 2022 18:57:57 +0800 Subject: [PATCH] use text for chart.configs --- docker/initsql/a-n9e.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/initsql/a-n9e.sql b/docker/initsql/a-n9e.sql index 6926e425..5b7c7dc2 100644 --- a/docker/initsql/a-n9e.sql +++ b/docker/initsql/a-n9e.sql @@ -177,7 +177,7 @@ CREATE TABLE `chart_group` ( CREATE TABLE `chart` ( `id` bigint unsigned not null auto_increment, `group_id` bigint unsigned not null comment 'chart group id', - `configs` varchar(8192), + `configs` text, `weight` int not null default 0, PRIMARY KEY (`id`), KEY (`group_id`)