use text for chart.configs

This commit is contained in:
Ulric Qin 2022-03-17 18:57:57 +08:00
parent 0bbdb03ace
commit 7ec6d84c7d
1 changed files with 1 additions and 1 deletions

View File

@ -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`)