scinote-web/db/migrate/20160118114850_remove_private_organizations.rb
2017-06-30 10:23:28 +02:00

14 lines
392 B
Ruby

class RemovePrivateOrganizations < ActiveRecord::Migration[4.2]
def up
remove_foreign_key :teams, column: :private_user_id
remove_index :teams, :private_user_id
remove_column :teams, :private_user_id
end
def down
add_column :teams, :private_user_id, :integer
add_index :teams, :private_user_id
add_foreign_key :teams, :users, column: :private_user_id
end
end