Details
Description
The SOCIALEVETTAG table needs an index for the tag row. It is missing from the Java schema, but it is in the PHP schema. Not sure about Rails
This causes heavy load on mysql with many SOCIALEVENTTAG table scans.
Need to add the following to the schema.sql (copied from PHP schema.sql):
CREATE INDEX SOCIALEVENTTAG_TAG on SOCIALEVENTTAG (tag);