woese/guara-crm

View on GitHub
app/models/micropost.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Micropost < ActiveRecord::Base
  belongs_to :user
  
  attr_accessible :content

  validates :content, presence: true, length: { maximum: 140 }
  validates :user_id, presence: true

  default_scope order: 'microposts.created_at DESC'
end