sustia wrote:Thanks Jérôme, I'm sure that your patience is greater than mine
Try to delete the tables again:
then run this command:
Code: Select all
CREATE TABLE `phpwcms_products` (
`prod_id` int(11) NOT NULL auto_increment,
`category` varchar(50) NOT NULL default '',
`product_name` varchar(50) NOT NULL default '',
`system_req` text,
`contact_name` varchar(50) NOT NULL default '',
PRIMARY KEY (`prod_id`)
) TYPE=MyISAM;
CREATE TABLE `phpwcms_products_prices` (
`pr_id` int(11) NOT NULL auto_increment,
`prod_id` int(11) NOT NULL default '0',
`description` varchar(200) NOT NULL default '',
`value` blob,
`display_pos` int(11) NOT NULL default '0',
PRIMARY KEY (`pr_id`)
) TYPE=MyISAM;
CREATE TABLE `phpwcms_mod_company` (
`conf_option` text NOT NULL,
`value` text NOT NULL
) TYPE=MyISAM;
CREATE TABLE `phpwcms_products_releases` (
`r_id` int(11) NOT NULL auto_increment,
`prod_id` int(11) NOT NULL default '0',
`release` varchar(10) NOT NULL default '',
`date` date default NULL,
`description` text,
PRIMARY KEY (`r_id`)
) TYPE=MyISAM;
and after that, then run this:
Code: Select all
INSERT INTO `phpwcms_mod_company` VALUES ('currency_symbol', '£ ');
INSERT INTO `phpwcms_mod_company` VALUES ('additional_priceinfo', 'Additional price info');
INSERT INTO `phpwcms_mod_company` VALUES ('pricelist_head', 'Price list for the product');
INSERT INTO `phpwcms_mod_company` VALUES ('releaselist_head', 'Releases of the product');