mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-13 09:11:14 -05:00
10 lines
180 B
Ruby
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
|