discourse/db/migrate/20130315180637_enable_trigr...

10 lines
180 B
Ruby

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