mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 23:06:57 +08:00
10 lines
185 B
Ruby
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
|