INSERT INTO (category, source, author, text, date, visible) VALUES ('news', '1', '2', 'tekst', '0000-00-00 00:00:01', '1')
-- -- Struktura tabeli dla `comment` -- CREATE TABLE `comment` ( `id_comment` int(11) NOT NULL AUTO_INCREMENT, `category` text NOT NULL, `source` int(11) NOT NULL, `author` int(11) NOT NULL, `text` text NOT NULL, `date` datetime NOT NULL, `visible` tinyint(1) NOT NULL, PRIMARY KEY (`id_comment`) ) ENGINE=MyISAM DEFAULT CHARSET=latin2 AUTO_INCREMENT=7 ;