Nicolas Bally 1fa250e0e4 Initial
2011-07-15 12:29:09 +02:00

8 lines
229 B
Ruby

class Event < ActiveRecord::Base
belongs_to :image_file
CATEGORIES = {1 => "Relooking", 2 => "Salon de coiffure", 3 => "Training", 4 => "Corporate"}
scope :futur, where("start_at >= ?", Time.now).order("start_at ASC")
end