I'm looking for the efficient way to store week days and times of each event. How do I achieve the following result
Events table
id | name | dates | rel_id |
---|---|---|---|
1 | hello world | Su 14:56:59, Mo 14:56:59, We 14:56:59, Th 14:56:59, Fr 14:56:59, Sa 14:56:59 | 1 |
Update
Is it correct to use an enum list like sa','su','mo','tu','we','th','fr' and then add a record for each day, so each rel_id will have 7 records!