-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
- Create ComponentAuthors table
- Add
component_idcolumn - integer - Add
author_idcolumn - integer - Components table should:
has_many :component_authors
has_many :authors, :through => :component_authors
- Authors table should:
has_many :component_authors
has_many :components, :through => :component_authors
- Add validations for
component_idandauthor_idcolumns (presence) - Create factories
- Write passing unit tests
- Create seed data