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

7 lines
152 B
Ruby

class Topic < ActiveRecord::Base
belongs_to :admin
attr_accessible :description, :title
validates :title, :presence => true
has_many :notes
end