Tag « migrations »
Changing the primary key of a model in Django
I had to change the primary key of a django model, and I wanted to create a migration for this.
The previous model was using django automatic primary key fields
I firstly changed the model to include the new uuid
field, and added the id
field (the old primary key …