Closed bdauer closed 7 years ago
Working on the logic when responding to the login signal for the creation of recurring tasks, realized this would keep leading to unnecessary code until it got changed, and then I'd have more to update.
This has been changed. The new fields are:
date
: functions just like the earlier fields, storing a date when a task is either due or scheduled.
date_type
: specifies the type of date as either 'S' for 'scheduled for' or 'D' for 'due by'.
Consider combining scheduled_datetime and due_datetime into one field (need to think of a name), then create a separate field to track whether something has a scheduled_date, due_date, or is ongoing. Each task is only ever one of these three options.
Change datetime to date in the above fields if not combining in order to reflect the change in field type.