64👍
If you are using Django 1.8 or superior, madzohan’s answer is the right answer.
Do it like this:
#note the uuid without parenthesis
eyw_transactionref=models.CharField(max_length=100, blank=True, unique=True, default=uuid.uuid4)
The reason why is because with the parenthesis you evaluate the function when the model is imported and this will yield an uuid which will be used for every instance created.
Without parenthesis you passed just the function needed to be called to give the default value to the field and it will be called each time the model is imported.
You can also take this approach:
class Paid(models.Model):
user=models.ForeignKey(User)
eyw_transactionref=models.CharField(max_length=100, null=True, blank=True, unique=True)
def __init__(self):
super(Paid, self).__init__()
self.eyw_transactionref = str(uuid.uuid4())
def __unicode__(self):
return self.user
139👍
Since version 1.8 Django has UUIDField
import uuid
from django.db import models
class MyUUIDModel(models.Model):
id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
# other fields
- [Django]-Django Admin app or roll my own?
- [Django]-MySQL vs PostgreSQL? Which should I choose for my Django project?
- [Django]-CORS error while consuming calling REST API with React
29👍
If you need or want to use a custom ID-generating function rather than Django’s UUID field, you can use a while loop in the save()
method. For sufficiently large unique IDs, this will almost never result in more than a single db call to verify uniqueness:
urlhash = models.CharField(max_length=6, null=True, blank=True, unique=True)
# Sample of an ID generator - could be any string/number generator
# For a 6-char field, this one yields 2.1 billion unique IDs
def id_generator(size=6, chars=string.ascii_uppercase + string.digits):
return ''.join(random.choice(chars) for _ in range(size))
def save(self):
if not self.urlhash:
# Generate ID once, then check the db. If exists, keep trying.
self.urlhash = id_generator()
while MyModel.objects.filter(urlhash=self.urlhash).exists():
self.urlhash = id_generator()
super(MyModel, self).save()
- [Django]-Adding css class to field on validation error in django
- [Django]-How to automate createsuperuser on django?
- [Django]-How to redirect with post data (Django)
2👍
This answer from Google Code worked for me:
https://groups.google.com/d/msg/south-users/dTyajWop-ZM/-AeuLaGKtyEJ
add:
from uuid import UUID
to your generated migration file.
- [Django]-Django modifying the request object
- [Django]-How to upgrade django?
- [Django]-Django :How to integrate Django Rest framework in an existing application?
1👍
you can use uuid for this task.
UUIDField is a special field to store universally unique identifiers.
Universally unique identifiers are a good alternative to AutoField for primary_key. The database will not generate the UUID for you, so it is recommended to use default.
import uuid
from django.db import models
class MyUUIDModel(models.Model):
id = models.UUIDField(
primary_key = True,
default = uuid.uuid4,
editable = False)
for more detail visit this link
- [Django]-Logging in Django and gunicorn
- [Django]-What's the purpose of Django setting ‘SECRET_KEY’?
- [Django]-Python/Django: log to console under runserver, log to file under Apache