Tabellenforscher erstellen (serieller Primärschlüssel des Forschers, Name Text);
CREATE TABLE annotation (
annotationid serial PRIMARY KEY,
paragraphid int references paragraph(paragraphid),
notes varchar,
researcherid int references researcher(reasearcherid)
);
Frantic Fowl