Index: install/install_schema.sql =================================================================== --- install/install_schema.sql (revision 13756) +++ install/install_schema.sql (working copy) @@ -188,6 +188,7 @@ ); CREATE TABLE Phrase ( + PhraseId int(11) NOT NULL AUTO_INCREMENT, Phrase varchar(255) NOT NULL DEFAULT '', PhraseKey varchar(255) NOT NULL DEFAULT '', l1_Translation text, @@ -196,7 +197,6 @@ l4_Translation text, l5_Translation text, PhraseType int(11) NOT NULL DEFAULT '0', - PhraseId int(11) NOT NULL AUTO_INCREMENT, LastChanged int(10) unsigned DEFAULT NULL, LastChangeIP varchar(15) NOT NULL DEFAULT '', Module varchar(30) NOT NULL DEFAULT 'In-Portal', Index: install/upgrades.sql =================================================================== --- install/upgrades.sql (revision 13758) +++ install/upgrades.sql (working copy) @@ -1669,7 +1669,9 @@ ); UPDATE Events SET Description = l1_Description; -ALTER TABLE Events DROP l1_Description; +ALTER TABLE Events + DROP l1_Description, + CHANGE Description Description TEXT NULL; DELETE FROM Phrase WHERE Phrase LIKE 'la_event_%'; DELETE FROM PersistantSessionData WHERE VariableName = 'phrases_columns_.';