mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 21:10:17 +08:00
10 lines
191 B
Ruby
10 lines
191 B
Ruby
class AddHstoreExtension < ActiveRecord::Migration[4.2]
|
|
def self.up
|
|
execute "CREATE EXTENSION IF NOT EXISTS hstore"
|
|
end
|
|
|
|
def self.down
|
|
execute "DROP EXTENSION hstore"
|
|
end
|
|
end
|