OSC-Affiliate News
Brought to you by:
snowman30
Table affiliate_payment_status
I updated the inserts for all languages and somehow put them before the create Statement. The part must look so:
(remove the inserts before)
DROP TABLE IF EXISTS affiliate_payment_status;
CREATE TABLE affiliate_payment_status (
affiliate_payment_status_id int(11) NOT NULL default '0',
affiliate_language_id int(11) NOT NULL default '1',
affiliate_payment_status_name varchar(32) NOT NULL default '',
PRIMARY KEY (affiliate_payment_status_id,affiliate_language_id),
KEY idx_affiliate_payment_status_name (affiliate_payment_status_name)
) TYPE=MyISAM; ... read more