Guest User

Untitled

a guest
Feb 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. class User
  2. include DataMapper::Resource
  3.  
  4. # Attributes
  5. property :id, Serial
  6. property :login, String
  7. property :email, String
  8. property :description, Text
  9. property :image, String
  10. property :created_at, DateTime
  11. property :updated_at, DateTime
  12.  
  13. # Associations
  14. has n, :categories, :through => Resource
  15.  
  16. # Validations
  17. validates_present :login, :password, :password_confirmation
  18. validates_is_unique :login
  19.  
  20. end
Add Comment
Please, Sign In to add comment