建立連線表

要在 studentscourses 之間建立連線表,請執行以下命令:

$ rails g migration CreateJoinTableStudentCourse student course

這將生成以下遷移:

class CreateJoinTableStudentCourse < ActiveRecord::Migration[5.0]
  def change
    create_join_table :students, :courses do |t|
      # t.index [:student_id, :course_id]
      # t.index [:course_id, :student_id]
    end
  end
end