Files
codeocean/db/migrate/20150128084834_create_internal_users_teams.rb

9 lines
224 B
Ruby

class CreateInternalUsersTeams < ActiveRecord::Migration[4.2]
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