-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
- Create Drafts table
- Add
publication_idcolumn - integer - Add
component_idcolumn - integer - Add
labelcolumn - string - Add
due_datecolumn - datetime - Add
is_finalcolumn - boolean - Add
requiredcolumn - boolean - Add
reminder_frequencycolumn - string - Add validation for
publication_idcolumn (presence) - In Publications table add:
has_many :drafts - Drafts table should:
belongs_to :publication - In Components table add:
has_many :drafts - Drafts table should:
belongs_to :components - Drafts table should:
has_many :notifications - In Notifications table add:
belongs_to :draft - Create factories
- Write passing unit tests
- Create seed data