Here at work, we have an "inventory" system using an Access database to track what employees are utilizing what items. Problem is, it is horrible. Like it's not just horrible, it's hilariously god awful.
So the idea is to make a new inventory system with a web interface, and integrate it into our internal web service.
The thing is, I feel like I may have oversimplified it or something, I don't know, it was just way too easy to come up with the design. Any advice on this following 6-table build?
---
1. Users
- unique ID, name, and description (i.e. Bob, IT manager)
2. Locations
- unique ID, description (i.e. Room 103)
3. ItemTypes
- unique ID, description (i.e. Furniture)
4. ItemBrands
- unique ID, description (i.e. Sony)
5. Items
- itemID, locationID, itemTypeID, itemBrandID, serial number, descripion, startdate, enddate, comments
6. ItemUsers (intersection table to find out who is using what item, since multiple users can use the same item)
- itemID, userID
---
And that's it. That covers everything the crap Access inventory does, and more actually. I can't see at all why this wouldn't work. But it only took like 2 minutes to draw this out on paper, so I'm second guessing myself, like surely it couldn't have been that easy. Any suggestions for such an inventory system where the sole goal is to track internally what employees are using what items?