Index: branches/RC/kernel/install/upgrades.sql =================================================================== diff -u -N -r11036 -r11046 --- branches/RC/kernel/install/upgrades.sql (.../upgrades.sql) (revision 11036) +++ branches/RC/kernel/install/upgrades.sql (.../upgrades.sql) (revision 11046) @@ -1 +1,16 @@ # ===== v 4.3.9 ===== +DROP TABLE ImportScripts; + +CREATE TABLE ImportScripts ( + ImportId INT(11) NOT NULL auto_increment, + Name VARCHAR(255) NOT NULL DEFAULT '', + Description TEXT NOT NULL, + Prefix VARCHAR(10) NOT NULL DEFAULT '', + Module VARCHAR(50) NOT NULL DEFAULT '', + ExtraFields VARCHAR(255) NOT NULL DEFAULT '', + Type VARCHAR(10) NOT NULL DEFAULT '', + Status TINYINT NOT NULL, + PRIMARY KEY (ImportId), + KEY Module (Module), + KEY Status (Status) +); \ No newline at end of file