I am trying to model the following 2 sentences in an ER Diagram:
Each company has a set of tanks. It is also known for each tank how filled up it is for each time of day.
It is not known if there are specific times of day for which there are logs. It can be once a day, twice, each hour, maybe some days you don't have any info, etc.
This is my current attempt:
(I forgot to put in the Tanks/Dates association an attribute called "current load")
Although for some reason I don't like it (I guess I don't like the Dates
entity!). How do you guys generally model this kind of situations?
I think I could instead have a TankLoads
entity, with an attribute "Load" and another attribute on the association called "Date".
Thanks
PS: Sorry for the crappy DIA Diagram :(