Django Key (id)=(244584) already exists, Django unique constraint primary key
Jan 18, 2023 · 1 min read · Replace stock_price with the table name on which you got the unique constraint issues. SELECT MAX(id) FROM stock_price; ALTER SEQUENCE stock_price_id_seq START WITH 245000; ALTER SEQUENCE stock_price_id_seq RESTART;
Join discussion