Handle missing due_date in weekly tasks migration.
This commit is contained in:
parent
5883bf50f3
commit
bf1c2b5ed2
1 changed files with 2 additions and 0 deletions
|
@ -35,6 +35,8 @@ class MoveWeeklyTasks < ActiveRecord::Migration
|
|||
|
||||
private
|
||||
def weekly_task?(workgroup, task)
|
||||
return false if task.due_date.nil?
|
||||
|
||||
group_task = {
|
||||
weekday: workgroup.weekday,
|
||||
name: workgroup.task_name,
|
||||
|
|
Loading…
Reference in a new issue