-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
- Create Submissions table
- Add
draft_idcolumn - integer - Add
user_idcolumn - integer - Add
commentscolumn - string - Add validation for
draft_idcolumn (presence) - Drafts table should:
has_many :submissions - In Submissions table add:
belongs_to :draft - Notifications table should:
belongs_to :submission - In Submissions table add:
has_many :notifications - Create factories
- Write passing unit tests
- Create seed data