Is it possible to convert back from UUID to Django's default ID?
- Could there be any impact in the existing data?
- If I delete this line in my Model, Django could automatically add a field to hold the primary key?
- Any thoughts on this or previous experience?
id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)