8 lines
183 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