Migrate Django ID field from int to big int with minimal downtime
Charles Oliveira
Don’t wait for your application run out of IDs! Act now! Introduction If you run a Django-based application created before 3.2 LTS, chances are that you might run into an ID overflow issue. Let me explain why: Before 3.2 LTS, Django used int as a data type for model IDs in the database. This...