2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-10 12:04:21 +08:00
discourse/db/migrate/20150724165259_add_index_to_post_custom_fields.rb

14 lines
322 B
Ruby

class AddIndexToPostCustomFields < ActiveRecord::Migration
def up
execute <<SQL
CREATE INDEX index_post_custom_fields_on_name_and_value ON post_custom_fields USING btree (name, left(value, 200))
SQL
end
def down
execute <<SQL
DROP INDEX index_post_custom_fields_on_name_and_value
SQL
end
end