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