[Rt-commit] r2093 - in rt/branches/PLATANO-EXPERIMENTAL: .
etc/upgrade/3.3.0
jesse at bestpractical.com
jesse at bestpractical.com
Fri Jan 14 03:51:09 EST 2005
Author: jesse
Date: Fri Jan 14 03:51:08 2005
New Revision: 2093
Modified:
rt/branches/PLATANO-EXPERIMENTAL/ (props changed)
rt/branches/PLATANO-EXPERIMENTAL/etc/upgrade/3.3.0/schema.mysql
Log:
r2532 at hualien (orig r2038): jesse | 2005-01-04T05:17:42.346320Z
r2527 at hualien: jesse | 2005-01-03T19:52:28.164258Z
Updated mysql schema upgrades to cope with ancient RT 3 instances which didn't have indexes we expect
Modified: rt/branches/PLATANO-EXPERIMENTAL/etc/upgrade/3.3.0/schema.mysql
==============================================================================
--- rt/branches/PLATANO-EXPERIMENTAL/etc/upgrade/3.3.0/schema.mysql (original)
+++ rt/branches/PLATANO-EXPERIMENTAL/etc/upgrade/3.3.0/schema.mysql Fri Jan 14 03:51:08 2005
@@ -54,7 +54,8 @@
alter table CustomFields add column Repeated int2 NOT NULL DEFAULT 0 ;
alter table CustomFields add column Pattern varchar(255) NULL;
alter table CustomFields add column MaxValues integer;
-alter table CustomFields drop index CustomFields1;
+# See above
+# alter table CustomFields drop index CustomFields1;
UPDATE CustomFields SET MaxValues = 0 WHERE Type LIKE '%Multiple';
UPDATE CustomFields SET MaxValues = 1 WHERE Type LIKE '%Single';
More information about the Rt-commit
mailing list