]> git.openstreetmap.org Git - rails.git/blob - app/models/map_bug_comment.rb
Merge branch 'master' into openstreetbugs
[rails.git] / app / models / map_bug_comment.rb
1 class MapBugComment < ActiveRecord::Base
2
3   set_table_name 'map_bug_comment'
4
5   belongs_to :map_bug, :foreign_key => 'bug_id'
6   belongs_to :user, :foreign_key => 'commenter_id'
7
8    validates_inclusion_of :event, :in => [ "opened", "closed", "reopened", "commented", "hidden" ]
9
10   validates_presence_of :id, :on => :update
11   validates_uniqueness_of :id
12   validates_presence_of :visible
13   validates_presence_of :date_created
14
15 end