mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 16:46:12 +08:00
ad082cea70
- Support for a popup that shows similar topics - Cleaned up a lot of Javascript - Cleaned up use of Promises
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
|