Files
discourse/db/migrate/20120924182000_add_hstore_extension.rb
2017-09-25 13:48:58 +08:00

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