mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-13 03:38:42 +00:00
4d2b0735dc
Update from vfleaking/uoj upstream, commit aa8a85c - 9f1302c. Because of this repo's modify, also with the adaption of community version.
10 lines
323 B
SQL
10 lines
323 B
SQL
CREATE TABLE IF NOT EXISTS `contests_asks` (
|
|
`id` int(11) NOT NULL primary key AUTO_INCREMENT,
|
|
`contest_id` int(11) NOT NULL,
|
|
`username` varchar(20) NOT NULL,
|
|
`question` text NOT NULL,
|
|
`answer` text NOT NULL,
|
|
`post_time` datetime NOT NULL,
|
|
`reply_time` datetime NOT NULL
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|