-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
- Create Authors table
- Add
publication_idcolumn - integer - Add
user_idcolumn - integer - Add
bylinecolumn - string - Add
custom_namecolumn - string - Add
is_editorcolumn - boolean - Add
is_contributorcolumn - boolean - Authors table should:
has_many :publications, :through => :publication_authors
has_many :publication_authors
- Update Publications table:
has_many :authors, :through => :publication_authors
has_many :publication_authors
- Update PublicationAuthors table:
belongs_to :authors - Update factories
- Update unit tests to pass
- Update seed data