View file data_base.sql

File size: 267B
CREATE TABLE IF NOT EXISTS `dragon` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_user` int(11) NOT NULL,
`time` int(11) NOT NULL,
`num` int(5) DEFAULT '0',
`cena` int(11) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;