xxxxxxxxxx
CREATE TABLE researcher (
researcherid serial PRIMARY KEY,
name text
);
xxxxxxxxxx
CREATE TABLE annotation (
annotationid serial PRIMARY KEY,
paragraphid int references paragraph(paragraphid),
notes varchar,
researcherid int references researcher(reasearcherid)
);