Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle Multiple Section Authors #36

Open
jdeck88 opened this issue Feb 2, 2016 · 0 comments
Open

Handle Multiple Section Authors #36

jdeck88 opened this issue Feb 2, 2016 · 0 comments
Assignees

Comments

@jdeck88
Copy link
Member

jdeck88 commented Feb 2, 2016

Add a new table "sectionAuthors" that links the authorname to the section table so we can handle cases where there are multiple authors in a single section. The table would look like:

DROP TABLE IF EXISTS sectionAuthors;
CREATE TABLE sectionAuthors (
section_id int(11) NOT NULL AUTO_INCREMENT,
given_name varchar(255) DEFAULT NULL,
family_name varchar(255) DEFAULT NULL,
KEY section_id (section_id),
CONSTRAINT section_ibfk_1 FOREIGN KEY (section_id) REFERENCES section (section_id) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

Also, drop the given_name, family_name from section table

Need to adjust digester assignments to handle this...

@jdeck88 jdeck88 self-assigned this Feb 2, 2016
@mkoo mkoo modified the milestone: end-of-grant release Apr 9, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants