What I need in my database could be made as such:
Migration
start_time_hours:integer
start_time_minutes:integer
end_time_hours:integer
end_time_minutes:integer
This is for saving a schedule that repeats every week and needs no other information than this. (An enum for the day, but this seems irrelevant).
Is there a way of doing this that is more the "Rails way", and less hacky?
start_time:time
end_time:time
perhaps?
And (how) would this work more efficient with forms?