В том-то ацтой что нет..
DROP TABLE IF EXISTS `gb_wp3`.`jos_content`;
CREATE TABLE `gb_wp3`.`jos_content` (
`id` int (11) unsigned NOT NULL auto_increment,
`title` varchar (100) collate latin1_bin NOT NULL default '',
`title_alias` varchar (100) collate latin1_bin NOT NULL default '',
`introtext` mediumtext collate latin1_bin NOT NULL,
`fulltext` mediumtext collate latin1_bin NOT NULL,
`state` tinyint (3) NOT NULL default '0',
`sectionid` int (11) unsigned NOT NULL default '0',
`mask` int (11) unsigned NOT NULL default '0',
`catid` int (11) unsigned NOT NULL default '0',
`created` datetime NOT NULL default '0000-00-00 00:00:00',
`created_by` int (11) unsigned NOT NULL default '0',
`created_by_alias` varchar (100) collate latin1_bin NOT NULL default '',
`modified` datetime NOT NULL default '0000-00-00 00:00:00',
`modified_by` int (11) unsigned NOT NULL default '0',
`checked_out` int (11) unsigned NOT NULL default '0',
`checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
`publish_up` datetime NOT NULL default '0000-00-00 00:00:00',
`publish_down` datetime NOT NULL default '0000-00-00 00:00:00',
`images` text collate latin1_bin NOT NULL,
`urls` text collate latin1_bin NOT NULL,
`attribs` text collate latin1_bin NOT NULL,
`version` int (11) unsigned NOT NULL default '1',
`parentid` int (11) unsigned NOT NULL default '0',
`ordering` int (11) NOT NULL default '0',
`metakey` text collate latin1_bin NOT NULL,
`metadesc` text collate latin1_bin NOT NULL,
`access` int (11) unsigned NOT NULL default '0',
`hits` int (11) unsigned NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `idx_section` (`sectionid`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_state` (`state`),
KEY `idx_catid` (`catid`),
KEY `idx_mask` (`mask`)
) ENGINE=MyISAM AUTO_INCREMENT=62 DEFAULT CHARSET=latin1 COLLATE=latin1_bin;