0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-05 21:57:36 +08:00
discourse/db/migrate/20120924182000_add_hstore_extension.rb

11 lines
212 B
Ruby
Vendored

# frozen_string_literal: true
class AddHstoreExtension < ActiveRecord::Migration[4.2]
def up
execute "CREATE EXTENSION IF NOT EXISTS hstore"
end
def down
execute "DROP EXTENSION hstore"
end
end