post.rb 170 字节
Newer Older
1 2 3
class Post < ActiveRecord::Base
  validates :title, :presence => true,
                    :length => { :minimum => 5 }
4

5 6
  has_many :comments, :dependent => :destroy
end