Skip to content

Let IntegerVersionField starts with '1' #150

Open
@shintophilip

Description

@shintophilip

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()

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions