-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Milestone
Description
We need a list of all the stuff in the space that can be borrowed.
Each item has
InventoryItem
----
Unique id
Name
Better description in case two items are similar
Defects or damages
Then we need to track who currently borrowed an item
InventoryBorrows
----
who(User)
what(InventoryItem)
borrowed_when(Date)
returned_when(Date)
something_broke/ notes
And then we should be able to tell if the InventoryItem has a current borrow open, aka is borrowed. Plus we have a history of who borrowed what and so forth