Guest User

Untitled

a guest
Jun 18th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. class Project
  2. include DataMapper::Resource
  3.  
  4. property :id, String, :key => true
  5. property :description, Text
  6.  
  7. has 0..n, :packages
  8. belongs_to :account, :key => true
  9. end
  10.  
  11. class Account
  12. include DataMapper::Resource
  13.  
  14. property :id, String, :key => true
  15. property :description, Text
  16. property :report_email, String
  17.  
  18. has 1..n, :projects, :constraint => :destroy
  19. end
  20.  
  21. class Package
  22. include DataMapper::Resource
  23.  
  24. property :id, String, :key => true
  25. property :uri, String
  26. belongs_to :project
  27. end
Add Comment
Please, Sign In to add comment