d7154d4832
f6d5036dd6
1
2 3
4
5
6
class Post < ActiveRecord::Base validates :title, :presence => true, :length => { :minimum => 5 } has_many :comments, :dependent => :destroy end