mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-08 19:28:42 +00:00
7 lines
261 B
SQL
7 lines
261 B
SQL
CREATE TABLE `lists_contents` (
|
|
`id` int NOT NULL,
|
|
`content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`content_md` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|