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.
0.6.0-stable
Sean Dague 2008-06-12 20:48:06 +00:00
parent 5219eb7420
commit 1451d6fb9a
1 changed files with 6 additions and 0 deletions

View File

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