Open
Description
Suppose we have a model,
class User(models.Model):
version = AutoIncVersionField()
id = models.UUIDField(primary_key=True, default=uuid.uuid4)
name = models.CharField(max_length=255)
If we create the object using create, we are getting the expected version value(which is 1).
User.objects.create(name='name')
But instead of that if we create the model using the initializer and create it using the save() method. The version is 2.
user = User(name='name')
user.save()