Просмотр файла SQL.sql

Размер файла: 393B
--
-- Структура таблицы `ticket`
--

CREATE TABLE IF NOT EXISTS `ticket` (
  `id` int(11) NOT NULL auto_increment,
  `tick_id` int(11) NOT NULL,
  `user` int(11) NOT NULL,
  `type` int(3) NOT NULL,
  `time` int(11) NOT NULL,
  `text` text NOT NULL,
  `status` int(3) NOT NULL,
  `prior` int(3) NOT NULL default '3',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8;