-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
- Create Reminders table
- Add
publication_idcolumn - integer - Add
task_idcolumn - integer - Add
draft_idcolumn - integer - Add
recipient_idcolumn - integer - Add
send_datecolumn - datetime - Add
for_authorcolumn - boolean - Add validation for
publication_idcolumn (presence) - In Publications table add:
has_many :reminders - Reminders table should:
belongs_to :publication - In Drafts table should:
has_many :reminders - Reminders table add:
belongs_to :draft - In Tasks table should:
has_many :reminders - Reminders table add:
belongs_to :task - Update Drafts model: when
reminder_frequencyis updated, delete all Reminders and rebuild team - Create factories
- Write passing unit tests
- Create seed data