On https://github.com/calebmer/postgraphql the author shows a schema:
create table post (
id serial primary key,
author_id int non null references user(id),
headline text,
body text,
…
);
How would I have to rewrite the schema if I would like to cite multiple authors and reference them using an array?
Would it be: author_id int[] non null references user(id)
?