2010-11-18 23:32:01 +00:00
|
|
|
from django.db import models
|
2009-03-10 05:24:19 +00:00
|
|
|
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 12:11:04 +00:00
|
|
|
CHOICES = (
|
|
|
|
(1, 'first'),
|
|
|
|
(2, 'second'),
|
|
|
|
)
|
|
|
|
|
2012-06-07 16:39:27 +00:00
|
|
|
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 12:11:04 +00:00
|
|
|
class Article(models.Model):
|
2007-08-05 05:14:46 +00:00
|
|
|
headline = models.CharField(max_length=100, default='Default headline')
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 12:11:04 +00:00
|
|
|
pub_date = models.DateTimeField()
|
|
|
|
status = models.IntegerField(blank=True, null=True, choices=CHOICES)
|
2007-08-11 05:23:19 +00:00
|
|
|
misc_data = models.CharField(max_length=100, blank=True)
|
2007-12-11 02:22:40 +00:00
|
|
|
article_text = models.TextField()
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 12:11:04 +00:00
|
|
|
|
|
|
|
class Meta:
|
2012-06-07 16:39:27 +00:00
|
|
|
ordering = ('pub_date', 'headline')
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 12:11:04 +00:00
|
|
|
# A utf-8 verbose name (Ångström's Articles) to test they are valid.
|
|
|
|
verbose_name = "\xc3\x85ngstr\xc3\xb6m's Articles"
|
|
|
|
|
2012-08-12 10:32:08 +00:00
|
|
|
def __str__(self):
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 12:11:04 +00:00
|
|
|
return self.headline
|
|
|
|
|
2012-06-07 16:39:27 +00:00
|
|
|
|
2007-09-14 18:12:36 +00:00
|
|
|
class Movie(models.Model):
|
2015-02-05 18:25:34 +00:00
|
|
|
# Test models with non-default primary keys / AutoFields #5218
|
2007-09-14 18:12:36 +00:00
|
|
|
movie_id = models.AutoField(primary_key=True)
|
|
|
|
name = models.CharField(max_length=60)
|
|
|
|
|
2012-06-07 16:39:27 +00:00
|
|
|
|
2008-03-24 14:19:12 +00:00
|
|
|
class Party(models.Model):
|
2008-11-16 08:48:24 +00:00
|
|
|
when = models.DateField(null=True)
|
2008-03-24 14:19:12 +00:00
|
|
|
|
2012-06-07 16:39:27 +00:00
|
|
|
|
2008-07-29 05:09:29 +00:00
|
|
|
class Event(models.Model):
|
|
|
|
when = models.DateTimeField()
|
|
|
|
|
2012-06-07 16:39:27 +00:00
|
|
|
|
2008-09-01 00:49:03 +00:00
|
|
|
class Department(models.Model):
|
|
|
|
id = models.PositiveIntegerField(primary_key=True)
|
|
|
|
name = models.CharField(max_length=200)
|
|
|
|
|
2012-08-12 10:32:08 +00:00
|
|
|
def __str__(self):
|
2008-09-01 00:49:03 +00:00
|
|
|
return self.name
|
|
|
|
|
2012-06-07 16:39:27 +00:00
|
|
|
|
2008-09-01 00:49:03 +00:00
|
|
|
class Worker(models.Model):
|
2015-07-22 14:43:21 +00:00
|
|
|
department = models.ForeignKey(Department, models.CASCADE)
|
2008-09-01 00:49:03 +00:00
|
|
|
name = models.CharField(max_length=200)
|
|
|
|
|
2012-08-12 10:32:08 +00:00
|
|
|
def __str__(self):
|
2008-09-01 00:49:03 +00:00
|
|
|
return self.name
|
|
|
|
|
2012-06-07 16:39:27 +00:00
|
|
|
|
2010-11-18 23:29:58 +00:00
|
|
|
class NonAutoPK(models.Model):
|
|
|
|
name = models.CharField(max_length=10, primary_key=True)
|
2012-06-07 16:39:27 +00:00
|
|
|
|
|
|
|
|
2015-02-05 18:25:34 +00:00
|
|
|
# Chained foreign keys with to_field produce incorrect query #18432
|
2012-06-07 16:39:27 +00:00
|
|
|
class Model1(models.Model):
|
|
|
|
pkey = models.IntegerField(unique=True, db_index=True)
|
|
|
|
|
|
|
|
|
|
|
|
class Model2(models.Model):
|
2015-07-22 14:43:21 +00:00
|
|
|
model1 = models.ForeignKey(Model1, models.CASCADE, unique=True, to_field='pkey')
|
2012-06-07 16:39:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Model3(models.Model):
|
2015-07-22 14:43:21 +00:00
|
|
|
model2 = models.ForeignKey(Model2, models.CASCADE, unique=True, to_field='model1')
|