mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 21:24:54 +08:00
16 lines
393 B
Ruby
16 lines
393 B
Ruby
class AddCurrentOrganizationToUser < ActiveRecord::Migration[4.2]
|
|
def up
|
|
add_column :users, :current_team_id, :integer
|
|
add_foreign_key :users, :teams, column: :current_team_id
|
|
|
|
User.find_each do |user|
|
|
if user.teams.count > 0
|
|
user.update(current_team_id: user.teams.first.id)
|
|
end
|
|
end
|
|
end
|
|
|
|
def down
|
|
remove_column :users, :current_team_id
|
|
end
|
|
end
|