Files
discourse/db/migrate/20130315180637_enable_trigram_support.rb
2017-09-25 13:48:58 +08:00

10 lines
185 B
Ruby

class EnableTrigramSupport < ActiveRecord::Migration[4.2]
def up
execute "CREATE EXTENSION IF NOT EXISTS pg_trgm"
end
def down
execute "DROP EXTENSION pg_trgm"
end
end