Guest User

Untitled

a guest
Feb 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. class Category
  2. include DataMapper::Resource
  3.  
  4. property :id, Serial
  5. property :name, String
  6. property :description, Text
  7. property :url, String
  8. property :created_at, DateTime
  9. property :updated_at, DateTime
  10.  
  11. has n, :images
  12. has n, :users, :through => Resource
  13.  
  14. end
Add Comment
Please, Sign In to add comment