Guest User

Untitled

a guest
Jul 18th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. class CourseInstance < ActiveRecord::Base
  2. belongs_to :course
  3. has_many :exercise_groups, :dependent => :destroy
  4.  
  5. named_scope :active, :conditions => ['start_date < :now AND end_date > :now', {:now => Time.now} ]
  6.  
  7. end
Add Comment
Please, Sign In to add comment