anthonymidili/FishBowl

View on GitHub
app/models/note.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Note < ActiveRecord::Base

  belongs_to :bowl

  validates_presence_of :event, message: "note can't be blank"

  default_scope -> { order(created_at: :desc) }
end