ecole_eft_app/db/migrate/20140719211604_create_student_user_groups.rb

11 lines
245 B
Ruby

class CreateStudentUserGroups < ActiveRecord::Migration
def change
create_table :student_user_groups do |t|
t.references :student_user, index: true
t.references :student_group, index: true
t.timestamps
end
end
end