mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-02 15:52:21 +08:00
11 lines
212 B
Ruby
11 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
|