mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-15 18:28:42 +00:00
10 lines
323 B
MySQL
10 lines
323 B
MySQL
|
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;
|