Files
codeocean/db/migrate/20150128084834_create_internal_users_teams.rb
2015-01-28 12:28:09 +01:00

9 lines
219 B
Ruby

class CreateInternalUsersTeams < ActiveRecord::Migration
def change
create_table :internal_users_teams do |t|
t.belongs_to :internal_user, index: true
t.belongs_to :team, index: true
end
end
end