Changes between Initial Version and Version 1 of Ticket #25794


Ignore:
Timestamp:
Nov 21, 2015, 2:32:19 PM (9 years ago)
Author:
Gunnar Scherf
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25794 – Description

    initial v1  
    55}}}
    66
     7The model :
     8{{{#!python
     9class ApplicationManager(models.Manager):
     10    def get_by_natural_key(self, uuid):
     11        return self.get(uuid=uuid)
     12
     13class Application(models.Model):
     14    uuid = models.UUIDField(unique=True, default=uuid.uuid4, editable=True)
     15    ...
     16}}}
     17 
    718The dump looks like this
    819{{{
Back to Top