ЛЕВОЕ ВНЕШНЕЕ СОЕДИНЕНИЕ в Rails 4

У меня 3 модели: class Student < ActiveRecord::Base has_many :student_enrollments, dependent: :destroy has_many :courses, through: :student_enrollments end class Course < ActiveRecord::Base has_many :student_enrollments, dependent: :destroy has_many :students, through: :student_enrollments...