I have an event calendar application with an sql database behind it, and now I have 3 tables to represent events:
Table 1: Holiday
Columns: ID, Date, Name, Location, CalendarID
Table 2: Vacation
Columns: Id, Date, Name, PersonId, WorkflowStatus
Table 3: Event
Columns: Id, Date, Name, CalendarID
So, I have “general events” that go into the events table and special events like holidays and vacations that go into these separate tables. I discuss combining them into a single table and just columns like location and personid that are empty for common events.
Table 1: Event:
Columns: Id, Date, Name, Location, PersonId, WorkflowStatus
does anyone see strong positive or negative values for each option. Obviously, there will be records in which there are columns that are optionally applied, but they intersect with these three tables.
source
share