mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-23 01:18:41 +00:00
96d4a3ecf7
Due to historical reasons, the code is in subfolder "1". With SVN removal, we place the code back and remove the annoying "1" folder.
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;
|