Guest User

Untitled

a guest
Feb 19th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. class Item < ActiveRecord::Base
  2. belongs_to :category
  3.  
  4. validates_presence_of :category
  5.  
  6. validates_presence_of :code
  7. validates_uniqueness_of :code
  8. validates_format_of :code, :with => /^[a-zA-Z]+-\d+$/
  9. end
Add Comment
Please, Sign In to add comment