7 lines
203 B
7 lines
203 B
6 years ago
|
class EcCourseStudentScore < ApplicationRecord
|
||
|
belongs_to :ec_year_student
|
||
|
belongs_to :ec_course
|
||
|
belongs_to :ec_course_target
|
||
|
|
||
|
has_many :ec_student_score_targets, dependent: :delete_all
|
||
|
end
|