1
0
Code Issues Pull Requests Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-09-24 21:49:09 +08:00
parent 1cbb36adbb
commit c82928de82
7 changed files with 871 additions and 23 deletions

View File

@@ -16,6 +16,13 @@ CREATE TABLE `answer` (
UNIQUE KEY `wy_id` (`wy_id`,`text`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE `answer` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`text` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '问题答案',
PRIMARY KEY (`id`),
UNIQUE KEY `text` (`text`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
SET
FOREIGN_KEY_CHECKS = 1;