7 lines
155 B
Ruby
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
|