micropost.rb 111 B

1234
  1. class Micropost < ActiveRecord::Base
  2. belongs_to :user
  3. validates :content, :length => { :maximum => 140 }
  4. end