look mom, migrations in action. This adds a couple of indexes

to mysql regions that should help on performance of some of the
selects.  We should start capturing more data on performance bits
to figure out where else we are missing indexes and add them via
migrations as well.
This commit is contained in:
Sean Dague
2008-06-12 20:48:06 +00:00
parent 5219eb7420
commit 1451d6fb9a

View File

@@ -0,0 +1,6 @@
BEGIN;
CREATE index prims_regionuuid on prims(RegionUUID);
CREATE index primitems_primid on primitems(primID);
COMMIT;