1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-09 14:34:35 +00:00
discourse/db/migrate/20130315180637_enable_trigram_support.rb

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