5
Well, I opened the archive, and reviewed the mysql.structure.sql included with the XOOPS install folder. Here is the relevant code:
CREATE TABLE `block_instance` (
`instanceid` int(12) unsigned NOT NULL auto_increment,
`bid` int(12) unsigned NOT NULL,
`options` text NOT NULL default '',
`title` varchar(255) NOT NULL default '',
`side` tinyint(1) unsigned NOT NULL default '0',
`weight` smallint(5) unsigned NOT NULL default '0',
`visible` tinyint(1) unsigned NOT NULL default '0',
`bcachetime` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`instanceid`),
KEY `join` (`instanceid`, `visible`, `weight`)
) TYPE=MyISAM;
I added the prefix to this code and it created with no problems. The only difference I see is the single quotes.
So my next question is why did this particular table refuse to restore without the single quotes, when I had 70 other tables that did restore properly?