9 lines
228 B
Ruby
9 lines
228 B
Ruby
class StudentGroup < ActiveRecord::Base
|
|
|
|
has_many :student_user_groups
|
|
has_many :student_user, :through => :student_user_groups
|
|
|
|
has_many :topic_student_groups
|
|
has_many :topics, :through => :topic_student_groups
|
|
end
|