discourse/db/migrate/20120924182000_add_hstore_e...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
222 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddHstoreExtension < ActiveRecord::Migration[4.2]
2013-02-05 14:16:51 -05:00
def self.up
execute "CREATE EXTENSION IF NOT EXISTS hstore"
end
def self.down
execute "DROP EXTENSION hstore"
end
end