Files
codeocean/db/migrate/20150128084834_create_internal_users_teams.rb
2021-05-14 22:03:06 +02:00

11 lines
255 B
Ruby

# frozen_string_literal: true
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