[Rt-commit] r2092 - in rt/branches/PLATANO-EXPERIMENTAL: . etc/upgrade/3.3.0

jesse at bestpractical.com jesse at bestpractical.com
Fri Jan 14 03:50:29 EST 2005


Author: jesse
Date: Fri Jan 14 03:50:28 2005
New Revision: 2092

Modified:
   rt/branches/PLATANO-EXPERIMENTAL/   (props changed)
   rt/branches/PLATANO-EXPERIMENTAL/etc/upgrade/3.3.0/schema.mysql
Log:
 r2531 at hualien (orig r2037):  jesse | 2005-01-04T05:17:29.991379Z
  r2526 at hualien:  jesse | 2005-01-03T19:21:48.180206Z
  Workaround for missing mysql indexes
  
 


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:50:28 2005
@@ -25,9 +25,9 @@
 
 alter table ObjectCustomFieldValues add column ContentEncoding varchar(80) NULL;
 
-alter table ObjectCustomFieldValues drop index ticketcustomfieldvalues1;
-
-alter table ObjectCustomFieldValues drop index ticketcustomfieldvalues2;
+# These could fail if there's no such index and there's no "drop index if exists" syntax
+#alter table ObjectCustomFieldValues drop index ticketcustomfieldvalues1;
+#alter table ObjectCustomFieldValues drop index ticketcustomfieldvalues2;
 
 alter table ObjectCustomFieldValues add index ObjectCustomFieldValues1 (Content); 
 


More information about the Rt-commit mailing list