2013-01-08 22:47:42 +01:00

7 lines
155 B
Ruby

class Note < ActiveRecord::Base
belongs_to :admin
belongs_to :topic
has_many :note_files
attr_accessible :message, :subject, :topic, :topic_id
end