# 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