annotate models

This commit is contained in:
Saito 2011-11-16 16:32:35 +08:00
parent f294b8d4c3
commit 7b5fd14515
4 changed files with 10 additions and 14 deletions

View file

@ -19,10 +19,6 @@ class Issue < ActiveRecord::Base
:presence => true,
:length => { :within => 0..255 }
#validates :content,
#:presence => true,
#:length => { :within => 0..2000 }
scope :critical, where(:critical => true)
scope :non_critical, where(:critical => false)
@ -46,7 +42,6 @@ end
#
# id :integer not null, primary key
# title :string(255)
# content :text
# assignee_id :integer
# author_id :integer
# project_id :integer