mirror of
https://github.com/discourse/discourse.git
synced 2024-12-20 01:33:53 +08:00
12 lines
212 B
Ruby
12 lines
212 B
Ruby
# 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
|