8 lines
179 B
Ruby
8 lines
179 B
Ruby
# -*- encoding : utf-8 -*-
|
|
class Topic < ActiveRecord::Base
|
|
belongs_to :admin
|
|
attr_accessible :description, :title
|
|
validates :title, :presence => true
|
|
has_many :notes
|
|
end
|