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

Размер файла: 200B
CREATE TABLE IF NOT EXISTS `chat`(
 `id` int(5) NOT NULL auto_increment,
 `login` text,
 `message` text,
 `time` text,
 `date` text,
 PRIMARY KEY(`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;