Django Key (id)=(244584) already exists, Django unique constraint primary key
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;
Jan 18, 20231 min read131