Guest User

Untitled

a guest
Feb 21st, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. class Product
  2. include DataMapper::Resource
  3.  
  4. property :id , Serial
  5. property :code , String , :nullable => false, :length => 6..6
  6. property :name , String , :nullable => false
  7. property :paid_in_advance, Boolean , :nullable => false, :default => false
  8. property :has_gst , Boolean , :nullable => false, :default => false
  9. property :has_deposit , Boolean , :nullable => false, :default => false
  10. property :updated_at , DateTime
  11. property :created_at , DateTime
  12.  
  13. has n, :rates
  14. has n, :rate_modifiers
  15. belongs_to :lender
  16.  
  17. end
Add Comment
Please, Sign In to add comment