Support indexing on values in custom fields to help with tagging plugin.

This commit is contained in:
Robin Ward 2015-01-08 16:17:30 -05:00
parent 7f3e343cd4
commit 6b602d48b9
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class IndexTopicCustomFieldValues < ActiveRecord::Migration
def change
add_index :topic_custom_fields, :value
end
end