Guest User

Untitled

a guest
Jun 19th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. class Medication < ActiveRecord::Base
  2.  
  3. end
  4.  
  5. @medication = Medication.first
  6. @medication.name = "Prozac"
  7. @medication.save
  8.  
  9. @medication.potency
  10. # --> NoMethodError: undefined method `potency' for #<Medication:0x103926db0>
  11.  
  12. @medication = Medication.find_by_name("Prozac")
Add Comment
Please, Sign In to add comment