I'm creating this little show scheduler thing.
I have the table shows, with title:string
and description:text
. I want to add days and times to the show (each show can have multiple days, and each day has their OWN times). How might I go about doing this?
I was thinking of making a times table. With the columns (show_id
, day
, and time
). Then when listing the show, you search for times that meet that show_id
and sort by day.
Any ideas, suggestions, etc. welcomed.