How to Upgrade Integer Sizes in Django and Postgres
SMRTR summary
A database error occurred when the unique identifier for objects reached the maximum value of 2,147,483,647 for a 32-bit integer. The solution involved upgrading the database field and associated sequence to use 64-bit integers, allowing for much larger values up to 9,223,372,036,854,775,807 before reaching the limit again.
SMRTR provides this summary for quick context. The original article belongs to Daily.dev.
Read the original article