So I have a Django application going and in my models.py I have a field that has models.AutoField(primary_key=True)
. I went into the admin site and deleted some rows off the table, yet when creating a new object the auto-incremented value picked up where it left off instead of going back to 1.
Is there any way I can reset this? I've already tried removing the field, running my migrations, then adding my field back.