mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-08 13:38:41 +00:00
4 lines
206 B
SQL
4 lines
206 B
SQL
ALTER TABLE `problems` ADD `difficulty` int NOT NULL DEFAULT '-1' AFTER `submit_num`;
|
|
ALTER TABLE `problems` MODIFY `extra_config` json NOT NULL;
|
|
ALTER TABLE `problems` ADD KEY `difficulty` (`difficulty`);
|