2013-01-08 23:28:47 +01:00

8 lines
182 B
Ruby

# -*- encoding : utf-8 -*-
class Note < ActiveRecord::Base
belongs_to :admin
belongs_to :topic
has_many :note_files
attr_accessible :message, :subject, :topic, :topic_id
end