1 class MapBugComment < ActiveRecord::Base
 
   3   set_table_name 'map_bug_comment'
 
   5   belongs_to :map_bug, :foreign_key => 'bug_id'
 
   9   validates_presence_of :id, :on => :update
 
  10   validates_uniqueness_of :id
 
  11   validates_presence_of :visible
 
  12   validates_presence_of :date_created