mirror of
https://github.com/django/django.git
synced 2024-11-19 16:04:13 +00:00
7aa538357c
The main cleanup was removal of non-necessary __unicode__ method. The tests didn't break on py3 as the string representation was never used in the tests. Refs #17813. Thanks to Simon Charette for spotting this issue.
17 lines
399 B
Python
17 lines
399 B
Python
from django.db import models
|
|
|
|
|
|
class Article(models.Model):
|
|
headline = models.CharField(max_length=100)
|
|
pub_date = models.DateField()
|
|
expire_date = models.DateField()
|
|
|
|
class Meta:
|
|
get_latest_by = 'pub_date'
|
|
|
|
|
|
class Person(models.Model):
|
|
name = models.CharField(max_length=30)
|
|
birthday = models.DateField()
|
|
# Note that this model doesn't have "get_latest_by" set.
|