scinote-web/db/migrate/20151021082639_add_pg_trgm_support.rb

17 lines
329 B
Ruby
Raw Normal View History

2016-02-12 23:52:43 +08:00
require File.expand_path('app/helpers/database_helper')
include DatabaseHelper
2017-06-30 16:23:28 +08:00
class AddPgTrgmSupport < ActiveRecord::Migration[4.2]
2016-02-12 23:52:43 +08:00
def up
if db_adapter_is? "PostgreSQL" then
create_extension :pg_trgm
end
end
def down
if db_adapter_is? "PostgreSQL" then
drop_extension :pg_trgm
end
end
end