1
1
mirror of https://github.com/renbaoshuo/S2OJ.git synced 2025-02-17 10:06:42 +00:00

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;