A very common pattern in relational databases is the use of a join table to create one-to-many or many-to-many relationships between entities.
eg, something like:
CREATE TABLE table1 (
id serial PRIMARY KEY
, acolumn character varying);
CREATE TABLE table2 (