search for: recalculate_hour

Displaying 1 result from an estimated 1 matches for "recalculate_hour".

Did you mean: recalculate_hours
2006 Apr 11
1
acts_as ... hourly_list?
...starting from 0:00. So, with this info (channel_items): id | channel_id | event_id | position | starttime 1 | 1 | 3 | 1 | 2 | 1 | 5 | 2 | 3 | 1 | 2 | 3 | 4 | 1 | 1 | 4 | [...] After processing it with recalculate_hours get this (all starting 00:00): id | channel_id | event_id | position | starttime 1 | 1 | 3 | 1 | 00:00 (event.duration = 1:00) 2 | 1 | 5 | 2 | 01:00 (event.duration = 0:30) 3 | 1 | 2 | 3 | 01:30 (event.duration = 0:45) 4 |...