Identity is how to set up an auto incrementing unique id for a Postgres database. ```SQL CREATE TABLE people ( personID int NOT NULL GENERATED ALWAYS AS IDENTITY ) ```