Index: branches/unlabeled/unlabeled-1.1.2/admin/install/upgrades/inportal_upgrade_v1.3.2.sql =================================================================== diff -u -r6861 -r6901 --- branches/unlabeled/unlabeled-1.1.2/admin/install/upgrades/inportal_upgrade_v1.3.2.sql (.../inportal_upgrade_v1.3.2.sql) (revision 6861) +++ branches/unlabeled/unlabeled-1.1.2/admin/install/upgrades/inportal_upgrade_v1.3.2.sql (.../inportal_upgrade_v1.3.2.sql) (revision 6901) @@ -1,4 +1,6 @@ ALTER TABLE ThemeFiles ADD FileFound TINYINT UNSIGNED NOT NULL DEFAULT '0'; ALTER TABLE ThemeFiles ADD INDEX (FileFound); +CREATE TABLE PopupSizes (PopupId int(10) unsigned NOT NULL auto_increment, TemplateName varchar(255) NOT NULL default '', PopupWidth int(11) NOT NULL default '0', PopupHeight int(11) NOT NULL default '0', PRIMARY KEY (PopupId), KEY TemplateName (TemplateName)); + UPDATE Modules SET Version = '1.3.2' WHERE Name = 'In-Portal'; \ No newline at end of file Index: branches/unlabeled/unlabeled-1.63.2/admin/install/inportal_schema.sql =================================================================== diff -u -r6861 -r6901 --- branches/unlabeled/unlabeled-1.63.2/admin/install/inportal_schema.sql (.../inportal_schema.sql) (revision 6861) +++ branches/unlabeled/unlabeled-1.63.2/admin/install/inportal_schema.sql (.../inportal_schema.sql) (revision 6901) @@ -753,3 +753,12 @@ PRIMARY KEY (CustomDataId) ) # -------------------------------------------------------- +CREATE TABLE PopupSizes ( + PopupId int(10) unsigned NOT NULL auto_increment, + TemplateName varchar(255) NOT NULL default '', + PopupWidth int(11) NOT NULL default '0', + PopupHeight int(11) NOT NULL default '0', + PRIMARY KEY (PopupId), + KEY TemplateName (TemplateName) +) +# -------------------------------------------------------- \ No newline at end of file