discourse/db/migrate/20150724165259_add_index_to_post_custom_fields.rb

5 lines
133 B
Ruby

class AddIndexToPostCustomFields < ActiveRecord::Migration
def change
add_index :post_custom_fields, [:name, :value]
end
end