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.
8 lines
235 B
8 lines
235 B
6 years ago
|
class GraduationGroup < ApplicationRecord
|
||
|
belongs_to :course
|
||
|
has_many :course_members
|
||
|
belongs_to :user
|
||
|
has_one :graduation_task_group_assignation, dependent: :destroy
|
||
|
has_many :graduation_work_comment_assignations
|
||
|
end
|