I would like to set up a table in PostgreSQL such that two columns together must be unique. There can be multiple values of either value, so long as there are not two that s
Create unique constraint that two numbers together CANNOT together be repeated:
ALTER TABLE someTable ADD UNIQUE (col1, col2)