Summary
To maintain database integrity over time, we recommend that your Postgres table have an independent primary key - that is, your Postgres table should not take the primary key values from the opposing data source in the sync.How to set up your primary key
Each Postgres table you sync with Bracket should have a primary key constraint, and the primary key should have a default value that is unique. We recommend using UUIDv4 primary keys, which you can automatically generate using the command below in yourCREATE TABLE
SQL statement.