serial
Auto-incrementing integer primary key in PostgreSQL.
Auto-incrementing integer primary key in PostgreSQL.
Serial columns automatically generate increasing integer IDs when a new row is inserted. They are commonly used as primary keys.
id: serial("id").primaryKey()