mirror of
https://github.com/discourse/discourse.git
synced 2026-08-05 21:57:36 +08:00
11 lines
212 B
Ruby
Vendored
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
|