mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-02 21:51:51 +08:00
16 lines
340 B
Ruby
16 lines
340 B
Ruby
require File.expand_path('app/helpers/database_helper')
|
|
include DatabaseHelper
|
|
|
|
class AddBtreeGistExtension < ActiveRecord::Migration[4.2]
|
|
def up
|
|
if db_adapter_is? "PostgreSQL" then
|
|
create_extension :btree_gist
|
|
end
|
|
end
|
|
|
|
def down
|
|
if db_adapter_is? "PostgreSQL" then
|
|
drop_extension :btree_gist
|
|
end
|
|
end
|
|
end
|