Menu

OSC-Affiliate / News: Recent posts

Bug in affiliate.sql (Vs 0.1)

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

Posted by Henri Schmidhuber 2002-12-09
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.