CREATE TABLE `pages` (
`id` int(8) NOT NULL auto_increment,
`position` int(8) NOT NULL,
`urlname` varbinary(255) NOT NULL,
`title` blob NOT NULL,
`description` blob NOT NULL,
`keywords` blob NOT NULL,
`text` blob NOT NULL,
`language` varbinary(255) NOT NULL,
`designation` varbinary(255) NOT NULL,
`show` int(9) NOT NULL,
`category` int(8) NOT NULL,
`otherinfo` blob NOT NULL,
`date` date NOT NULL,
`hits` int(8) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM;