openstreetmap-website/app/models/map_bug_comment.rb
Kai Krueger c3bf919e3e Reuse the map_bug_comment table as a more general history table of map_bugs including close and reopen events
This helps the rss feed to work on a per event basis rather than on a per bug basis
2010-03-21 12:12:05 +00:00

15 lines
428 B
Ruby

class MapBugComment < ActiveRecord::Base
set_table_name 'map_bug_comment'
belongs_to :map_bug, :foreign_key => 'bug_id'
belongs_to :user, :foreign_key => 'commenter_id'
validates_inclusion_of :event, :in => [ "opened", "closed", "reopened", "commented", "hidden" ]
validates_presence_of :id, :on => :update
validates_uniqueness_of :id
validates_presence_of :visible
validates_presence_of :date_created
end