Index: branches/5.1.x/core/install/install_schema.sql =================================================================== diff -u -N -r14029 -r14108 --- branches/5.1.x/core/install/install_schema.sql (.../install_schema.sql) (revision 14029) +++ branches/5.1.x/core/install/install_schema.sql (.../install_schema.sql) (revision 14108) @@ -82,13 +82,6 @@ KEY MailingId (MailingId) ); -CREATE TABLE EmailSubscribers ( - EmailMessageId int(11) NOT NULL default '0', - PortalUserId int(11) NOT NULL default '0', - KEY EmailMessageId (EmailMessageId), - KEY PortalUserId (PortalUserId) -); - CREATE TABLE Events ( EventId int(11) NOT NULL AUTO_INCREMENT, `Event` varchar(40) NOT NULL DEFAULT '', Index: branches/5.1.x/core/install/upgrades.sql =================================================================== diff -u -N -r14067 -r14108 --- branches/5.1.x/core/install/upgrades.sql (.../upgrades.sql) (revision 14067) +++ branches/5.1.x/core/install/upgrades.sql (.../upgrades.sql) (revision 14108) @@ -1993,4 +1993,7 @@ SET l<%PRIMARY_LANGUAGE%>_Translation = 'Use Cron to run Agents' WHERE PhraseKey = 'LA_USECRONFORREGULAREVENT' AND l<%PRIMARY_LANGUAGE%>_Translation = 'Use Cron for Running Regular Events'; -# ===== v 5.1.1 ===== \ No newline at end of file +# ===== v 5.1.1 ===== + +# ===== v 5.1.2-B1 ===== +DROP TABLE EmailSubscribers; \ No newline at end of file Index: branches/5.1.x/core/install/remove_schema.sql =================================================================== diff -u -N -r13559 -r14108 --- branches/5.1.x/core/install/remove_schema.sql (.../remove_schema.sql) (revision 13559) +++ branches/5.1.x/core/install/remove_schema.sql (.../remove_schema.sql) (revision 14108) @@ -3,7 +3,6 @@ DROP TABLE CustomField; DROP TABLE ConfigurationValues; DROP TABLE EmailQueue; -DROP TABLE EmailSubscribers; DROP TABLE Events; DROP TABLE IdGenerator; DROP TABLE Language;