ual_app/app/models/student_group.rb
2014-08-24 00:18:02 +02:00

9 lines
229 B
Ruby

class StudentGroup < ActiveRecord::Base
has_many :student_user_groups
has_many :student_users, :through => :student_user_groups
has_many :topic_student_groups
has_many :topics, :through => :topic_student_groups
end