Index: branches/unlabeled/unlabeled-1.76.2/admin/install/inportal_data.sql =================================================================== diff -u -r8227 -r8283 --- branches/unlabeled/unlabeled-1.76.2/admin/install/inportal_data.sql (.../inportal_data.sql) (revision 8227) +++ branches/unlabeled/unlabeled-1.76.2/admin/install/inportal_data.sql (.../inportal_data.sql) (revision 8283) @@ -225,4 +225,4 @@ INSERT INTO Stylesheets VALUES (8, 'Default', 'In-Portal Default Theme', '', 1124952555, 1); -INSERT INTO Modules VALUES ('In-Portal', 'kernel/', 'm', '4.1.1', 1, 0, '', 0, '1054738405'); +INSERT INTO Modules VALUES ('In-Portal', 'kernel/', 'm', '4.1.0', 1, 0, '', 0, '1054738405'); Index: branches/unlabeled/unlabeled-1.1.2/admin/install/upgrades/inportal_upgrade_v4.1.0.sql =================================================================== diff -u -r8242 -r8283 --- branches/unlabeled/unlabeled-1.1.2/admin/install/upgrades/inportal_upgrade_v4.1.0.sql (.../inportal_upgrade_v4.1.0.sql) (revision 8242) +++ branches/unlabeled/unlabeled-1.1.2/admin/install/upgrades/inportal_upgrade_v4.1.0.sql (.../inportal_upgrade_v4.1.0.sql) (revision 8283) @@ -36,4 +36,11 @@ CREATE TABLE Counters (CounterId int(10) unsigned NOT NULL auto_increment,Name varchar(100) NOT NULL default '',CountQuery text,CountValue text,LastCounted int(10) unsigned default NULL,LifeTime int(10) unsigned NOT NULL default '3600',IsClone tinyint(3) unsigned NOT NULL default '0',TablesAffected text,PRIMARY KEY (CounterId),UNIQUE KEY Name (Name)); +DROP TABLE EmailQueue; +CREATE TABLE EmailQueue (EmailQueueId int(10) unsigned NOT NULL auto_increment, ToEmail varchar(255) NOT NULL default '', `Subject` varchar(255) NOT NULL default '', MessageHeaders text, MessageBody longtext, Queued int(10) unsigned NOT NULL default '0', SendRetries int(10) unsigned NOT NULL default '0', LastSendRetry int(10) unsigned NOT NULL default '0', PRIMARY KEY (EmailQueueId), KEY LastSendRetry (LastSendRetry), KEY SendRetries (SendRetries)); +ALTER TABLE Events ADD ReplacementTags TEXT AFTER Event; +ALTER TABLE EmailMessage DROP ReplacementTags; + +UPDATE Modules SET Version = '4.1.1' WHERE Name = 'Core'; + UPDATE Modules SET Version = '4.1.0' WHERE Name = 'In-Portal'; \ No newline at end of file Fisheye: Tag 8283 refers to a dead (removed) revision in file `branches/unlabeled/unlabeled-1.1.2/admin/install/upgrades/inportal_upgrade_v4.1.1.sql'. Fisheye: No comparison available. Pass `N' to diff?