2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
class AddHstoreExtension < ActiveRecord::Migration[4.2]
|
2024-10-25 03:13:06 -04:00
|
|
|
def up
|
2013-02-05 14:16:51 -05:00
|
|
|
execute "CREATE EXTENSION IF NOT EXISTS hstore"
|
|
|
|
end
|
|
|
|
|
2024-10-25 03:13:06 -04:00
|
|
|
def down
|
2013-02-05 14:16:51 -05:00
|
|
|
execute "DROP EXTENSION hstore"
|
|
|
|
end
|
|
|
|
end
|