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
|
|
|
# coding: utf-8
|
2010-11-19 07:32:01 +08:00
|
|
|
from django.db import models
|
2009-03-10 13:24:19 +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
|
|
|
|
|
|
|
CHOICES = (
|
|
|
|
(1, 'first'),
|
|
|
|
(2, 'second'),
|
|
|
|
)
|
|
|
|
|
|
|
|
class Article(models.Model):
|
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:
|
|
|
|
ordering = ('pub_date','headline')
|
|
|
|
# A utf-8 verbose name (Ångström's Articles) to test they are valid.
|
|
|
|
verbose_name = "\xc3\x85ngstr\xc3\xb6m's Articles"
|
|
|
|
|
|
|
|
def __unicode__(self):
|
|
|
|
return self.headline
|
|
|
|
|
2007-09-15 02:12:36 +08:00
|
|
|
class Movie(models.Model):
|
|
|
|
#5218: Test models with non-default primary keys / AutoFields
|
|
|
|
movie_id = models.AutoField(primary_key=True)
|
|
|
|
name = models.CharField(max_length=60)
|
|
|
|
|
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
|
|
|
|
2008-07-29 13:09:29 +08:00
|
|
|
class Event(models.Model):
|
|
|
|
when = models.DateTimeField()
|
|
|
|
|
2008-09-01 08:49:03 +08:00
|
|
|
class Department(models.Model):
|
|
|
|
id = models.PositiveIntegerField(primary_key=True)
|
|
|
|
name = models.CharField(max_length=200)
|
|
|
|
|
|
|
|
def __unicode__(self):
|
|
|
|
return self.name
|
|
|
|
|
|
|
|
class Worker(models.Model):
|
|
|
|
department = models.ForeignKey(Department)
|
|
|
|
name = models.CharField(max_length=200)
|
|
|
|
|
|
|
|
def __unicode__(self):
|
|
|
|
return self.name
|
|
|
|
|
2008-11-17 02:58:43 +08:00
|
|
|
class BrokenUnicodeMethod(models.Model):
|
|
|
|
name = models.CharField(max_length=7)
|
2009-03-10 13:23:42 +08:00
|
|
|
|
2008-11-17 02:58:43 +08:00
|
|
|
def __unicode__(self):
|
2009-03-10 13:23:42 +08:00
|
|
|
# Intentionally broken (trying to insert a unicode value into a str
|
|
|
|
# object).
|
2008-11-17 02:58:43 +08:00
|
|
|
return 'Názov: %s' % self.name
|
|
|
|
|
2010-11-19 07:29:58 +08:00
|
|
|
class NonAutoPK(models.Model):
|
|
|
|
name = models.CharField(max_length=10, primary_key=True)
|