View file k/base.txt

File size: 481B
CREATE TABLE `users` (
  `id` int(11) NOT NULL auto_increment,
  `title` text NOT NULL,
  `link` text NOT NULL,
  `pass` text NOT NULL,
  `email` text NOT NULL,
  `about` text NOT NULL,
  `counter` int(11) default '0',
  `ltime` text NOT NULL,
  `category` text NOT NULL,
  `outcounter` int(11) default NULL,
  `allushlo` int(11) default '0',
  `date` date NOT NULL default '0000-00-00',
  `soft` text NOT NULL,
  PRIMARY KEY  (`id`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;