Changes between Initial Version and Version 1 of Ticket #25794
- Timestamp:
- Nov 21, 2015, 2:32:19 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25794 – Description
initial v1 5 5 }}} 6 6 7 The model : 8 {{{#!python 9 class ApplicationManager(models.Manager): 10 def get_by_natural_key(self, uuid): 11 return self.get(uuid=uuid) 12 13 class Application(models.Model): 14 uuid = models.UUIDField(unique=True, default=uuid.uuid4, editable=True) 15 ... 16 }}} 17 7 18 The dump looks like this 8 19 {{{