1
0
mirror of https://github.com/chatopera/cosin.git synced 2025-06-16 18:30:03 +08:00

Merge pull request #974 from hailiang-wang/bugfix/973

https://github.com/cskefu/cskefu/issues/973 fix error on table name c…
This commit is contained in:
lecjy 2023-11-21 08:20:28 +08:00 committed by GitHub
commit 593ef974ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@ USE `cosinee`;
-- prepare variables -- prepare variables
-- ----------------- -- -----------------
CREATE TABLE IF NOT EXISTS `cs_metakey` ( CREATE TABLE IF NOT EXISTS `cs_metakv` (
`metakey` varchar(512) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '元数据字段名,唯一标识', `metakey` varchar(512) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '元数据字段名,唯一标识',
`metavalue` text COLLATE utf8mb4_unicode_ci COMMENT '元数据值', `metavalue` text COLLATE utf8mb4_unicode_ci COMMENT '元数据值',
`createtime` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `createtime` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',