View file data_base.sql

File size: 323B
alter table user add zagon_stat int(11) default '0';
CREATE TABLE IF NOT EXISTS `zagon` (
  `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 ;