public
Description: Canberra Ruby Crew Site #crc
Homepage: http://canberraruby.com
Clone URL: git://github.com/artpop/crc_site.git
crc_site / app / models / topic.rb
100644 7 lines (5 sloc) 0.13 kb
1
2
3
4
5
6
7
class Topic < ActiveRecord::Base
  belongs_to :meeting
  
  validates_presence_of :title
  validates_presence_of :description
end