An entity "schoolyear" has configurable visible week days which are visible or not in a time planner.
I see now 2 posibilites to save the visible week days.
Either I make an N:M relation: N schoolyear has M VisibleWeekDays
Or I put the visible weeks days in a comma separated field: "0,2,5"
The numbers are the enum value from the DayOfWeek enum.
Should I really go this overhead way of create another 2 tables (junction + VisibleWeekDay table) just to hold in one field the index of a day?
How would you save that visible week days?