Created
August 14, 2012 13:21
-
-
Save gerhc/3349202 to your computer and use it in GitHub Desktop.
Django UUID field
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.db import models | |
import uuid | |
class UUIDField(models.CharField) : | |
def __init__(self, *args, **kwargs): | |
kwargs['max_length'] = kwargs.get('max_length', 64 ) | |
kwargs['blank'] = True | |
models.CharField.__init__(self, *args, **kwargs) | |
def pre_save(self, model_instance, add): | |
if add : | |
value = str(uuid.uuid4()) | |
setattr(model_instance, self.attname, value) | |
return value | |
else: | |
return super(models.CharField, self).pre_save(model_instance, add) | |
class Example(models.Model) : | |
uuid = UUIDField(primary_key=True, editable=False) | |
name = models.CharField(max_length=32) | |
value = models.CharField(max_length=255, blank=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment