You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trustieforge/db/migrate/20130911005626_create_stude...

11 lines
209 B

class CreateStudentsForCourses < ActiveRecord::Migration
def change
create_table :students_for_courses do |t|
t.integer :student_id
t.integer :course_id
t.timestamps
end
end
end