discourse/db/migrate/20120924182000_add_hstore_e...

12 lines
222 B
Ruby

# frozen_string_literal: true
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