Quote:
Originally Posted by Junkie
I assume I first need to create the table "warningtype" and then import the SQL dump from the "warning_types" table?
|
No the warningtype table will be created by the product import.However if that is your wish you can
[SQL]
CREATE TABLE IF NOT EXISTS warningype (
warningtypeid INT(15) NOT NULL AUTO_INCREMENT,
title varCHAR(255) NOT NULL,
warn_points INT(15) NOT NULL DEFAULT '0',
warn_desc text NOT NULL,
warn_maturity INT(5),
warn_permban tinyint(1),
warn_type tinyint(3),
warn_alert tinyint(1),
warn_alertcomment MEDIUMTEXT,
PRIMARY KEY (warningtypeid));
[/SQL]
you just caught a bug the install code in the product file is not correct updating that ...The above query will query the new table