refactor: change configs.cval length

This commit is contained in:
ning 2023-06-15 14:35:21 +08:00
parent 9edf05c19a
commit cb66b19d70
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ insert into user_group_member(group_id, user_id) values(1, 1);
CREATE TABLE `configs` (
`id` bigint unsigned not null auto_increment,
`ckey` varchar(191) not null,
`cval` varchar(4096) not null default '',
`cval` text not null,
PRIMARY KEY (`id`),
UNIQUE KEY (`ckey`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4;