Create Table
Verfasst: 15.08.2004 11:31
Hallo
in einem Mod steht in der Anleitung
CREATE TABLE phpbb_transactions (
trans_date int(11) NOT NULL default '0',
trans_from varchar(25) NOT NULL default '',
trans_to varchar(25) NOT NULL default '',
trans_amount mediumint(8) NOT NULL default '0',
trans_reason varchar(255) NOT NULL default '',
PRIMARY KEY (trans_date)
) TYPE=MyISAM;
#
#Run this command if you have the old transaction table
#
ALTER TABLE phpbb_transactions ADD trans_reason VARCHAR (255) NOT NULL default '' AFTER trans_amount;
UPDATE phpbb_transactions SET trans_reason='N/A';
was muss ich jetz machen?
in einem Mod steht in der Anleitung
CREATE TABLE phpbb_transactions (
trans_date int(11) NOT NULL default '0',
trans_from varchar(25) NOT NULL default '',
trans_to varchar(25) NOT NULL default '',
trans_amount mediumint(8) NOT NULL default '0',
trans_reason varchar(255) NOT NULL default '',
PRIMARY KEY (trans_date)
) TYPE=MyISAM;
#
#Run this command if you have the old transaction table
#
ALTER TABLE phpbb_transactions ADD trans_reason VARCHAR (255) NOT NULL default '' AFTER trans_amount;
UPDATE phpbb_transactions SET trans_reason='N/A';
was muss ich jetz machen?