2010-11-19 07:32:01 +08:00
|
|
|
from django.db import models
|
2009-03-10 13:24:19 +08:00
|
|
|
|
2012-06-08 00:39:27 +08: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 20:11:04 +08:00
|
|
|
class Article(models.Model):
|
2019-03-20 23:05:26 +08:00
|
|
|
CHOICES = (
|
|
|
|
(1, "first"),
|
|
|
|
(2, "second"),
|
|
|
|
)
|
2007-08-05 13:14:46 +08: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 20:11:04 +08:00
|
|
|
pub_date = models.DateTimeField()
|
|
|
|
status = models.IntegerField(blank=True, null=True, choices=CHOICES)
|
2007-08-11 13:23:19 +08:00
|
|
|
misc_data = models.CharField(max_length=100, blank=True)
|
2007-12-11 10:22:40 +08: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 20:11:04 +08:00
|
|
|
|
|
|
|
class Meta:
|
2012-06-08 00:39:27 +08: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 20:11:04 +08:00
|
|
|
# A utf-8 verbose name (Ångström's Articles) to test they are valid.
|
|
|
|
verbose_name = "\xc3\x85ngstr\xc3\xb6m's Articles"
|
|
|
|
|
2012-06-08 00:39:27 +08:00
|
|
|
|
2007-09-15 02:12:36 +08:00
|
|
|
class Movie(models.Model):
|
2015-02-06 02:25:34 +08:00
|
|
|
# Test models with non-default primary keys / AutoFields #5218
|
2007-09-15 02:12:36 +08:00
|
|
|
movie_id = models.AutoField(primary_key=True)
|
|
|
|
name = models.CharField(max_length=60)
|
|
|
|
|
2012-06-08 00:39:27 +08:00
|
|
|
|
2008-03-24 22:19:12 +08:00
|
|
|
class Party(models.Model):
|
2008-11-16 16:48:24 +08:00
|
|
|
when = models.DateField(null=True)
|
2008-03-24 22:19:12 +08:00
|
|
|
|
2012-06-08 00:39:27 +08:00
|
|
|
|
2008-07-29 13:09:29 +08:00
|
|
|
class Event(models.Model):
|
|
|
|
when = models.DateTimeField()
|
|
|
|
|
2012-06-08 00:39:27 +08:00
|
|
|
|
2008-09-01 08:49:03 +08:00
|
|
|
class Department(models.Model):
|
|
|
|
id = models.PositiveIntegerField(primary_key=True)
|
|
|
|
name = models.CharField(max_length=200)
|
|
|
|
|
2012-06-08 00:39:27 +08:00
|
|
|
|
2008-09-01 08:49:03 +08:00
|
|
|
class Worker(models.Model):
|
2015-07-22 22:43:21 +08:00
|
|
|
department = models.ForeignKey(Department, models.CASCADE)
|
2008-09-01 08:49:03 +08:00
|
|
|
name = models.CharField(max_length=200)
|
|
|
|
|
2012-08-12 18:32:08 +08:00
|
|
|
def __str__(self):
|
2008-09-01 08:49:03 +08:00
|
|
|
return self.name
|
|
|
|
|
2012-06-08 00:39:27 +08:00
|
|
|
|
2010-11-19 07:29:58 +08:00
|
|
|
class NonAutoPK(models.Model):
|
|
|
|
name = models.CharField(max_length=10, primary_key=True)
|
2012-06-08 00:39:27 +08:00
|
|
|
|
|
|
|
|
2015-02-06 02:25:34 +08:00
|
|
|
# Chained foreign keys with to_field produce incorrect query #18432
|
2012-06-08 00:39:27 +08:00
|
|
|
class Model1(models.Model):
|
|
|
|
pkey = models.IntegerField(unique=True, db_index=True)
|
|
|
|
|
|
|
|
|
|
|
|
class Model2(models.Model):
|
2015-07-22 22:43:21 +08:00
|
|
|
model1 = models.ForeignKey(Model1, models.CASCADE, unique=True, to_field="pkey")
|
2012-06-08 00:39:27 +08:00
|
|
|
|
|
|
|
|
|
|
|
class Model3(models.Model):
|
2015-07-22 22:43:21 +08:00
|
|
|
model2 = models.ForeignKey(Model2, models.CASCADE, unique=True, to_field="model1")
|