* limit name length to 20.

This commit is contained in:
liwenrui
2023-07-18 17:30:25 +08:00
parent 9d792c0297
commit 561c6a2ef0
+1 -1
View File
@@ -1,6 +1,6 @@
CREATE TABLE IF NOT EXISTS `zt_prompt` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL,
`name` varchar(20) NOT NULL,
`desc` text DEFAULT NULL,
`model` mediumint(8) unsigned DEFAULT NULL,
`module` varchar(30) DEFAULT NULL,