﻿CREATE TABLE IF NOT EXISTS `offers` (
  `id` int(25) NOT NULL auto_increment,
  `user` int(20) NOT NULL,
  `name` text NOT NULL,
  `time` int(25) NOT NULL,
  `reit` int(25) NOT NULL,
  `offer` text NOT NULL,
  `type` varchar(15) NOT NULL,
  `locked` int(5) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=cp1251 AUTO_INCREMENT=7 ;