Guest User

Untitled

a guest
Oct 17th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. class Schedule < ActiveRecord::Base
  2. attr_accessible :doctor_id, :date, :province_id
  3.  
  4. belongs_to :doctor
  5. belongs_to :province
  6.  
  7. validates_uniqueness_of :province_id, :scope => :date
  8. end
Add Comment
Please, Sign In to add comment