2006-06-07 08:09:29 +08:00
|
|
|
"""
|
2007-03-24 04:17:04 +08:00
|
|
|
33. get_or_create()
|
2006-06-07 08:09:29 +08:00
|
|
|
|
2008-08-12 22:15:38 +08:00
|
|
|
``get_or_create()`` does what it says: it tries to look up an object with the
|
|
|
|
given parameters. If an object isn't found, it creates one with the given
|
|
|
|
parameters.
|
2006-06-07 08:09:29 +08:00
|
|
|
"""
|
|
|
|
|
2012-06-08 00:08:47 +08:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2011-07-13 17:35:51 +08:00
|
|
|
from django.db import models
|
2012-08-12 18:32:08 +08:00
|
|
|
from django.utils.encoding import python_2_unicode_compatible
|
2006-06-07 08:09:29 +08:00
|
|
|
|
2011-10-14 02:04:12 +08:00
|
|
|
|
2012-08-12 18:32:08 +08:00
|
|
|
@python_2_unicode_compatible
|
2006-06-07 08:09:29 +08:00
|
|
|
class Person(models.Model):
|
2007-08-05 13:14:46 +08:00
|
|
|
first_name = models.CharField(max_length=100)
|
|
|
|
last_name = models.CharField(max_length=100)
|
2006-06-07 08:09:29 +08:00
|
|
|
birthday = models.DateField()
|
|
|
|
|
2012-08-12 18:32:08 +08:00
|
|
|
def __str__(self):
|
2012-06-08 00:08:47 +08:00
|
|
|
return '%s %s' % (self.first_name, self.last_name)
|
2006-06-07 08:09:29 +08:00
|
|
|
|
2008-09-03 08:09:33 +08:00
|
|
|
class ManualPrimaryKeyTest(models.Model):
|
|
|
|
id = models.IntegerField(primary_key=True)
|
|
|
|
data = models.CharField(max_length=100)
|