How to replace Django’s primary key with a different integer that is unique for that table

I have a Django web application that uses the default auto-incremented positive integers as the primary key. This key is used throughout the application and is frequently inserted into the URL. I don’t want to expose this number to the public so that they can guess the number of users or other entities in my Database.