- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
CREATE TABLE `static_answers` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`question_id` int(11) unsigned NOT NULL,
`title` varchar(255) NOT NULL,
`is_correct` enum('0','1') NOT NULL,
`created_at` int(11) unsigned NOT NULL,
`updated_at` int(11) unsigned NOT NULL,
`hits` int(10) unsigned NOT NULL DEFAULT '0',
...
)
Follow us!