mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Refs #23919 -- Removed python_2_unicode_compatible decorator usage
This commit is contained in:
@@ -10,10 +10,8 @@ field, which specifies the ``Reporter``'s position for the given article
|
||||
(e.g. "Staff writer").
|
||||
"""
|
||||
from django.db import models
|
||||
from django.utils.encoding import python_2_unicode_compatible
|
||||
|
||||
|
||||
@python_2_unicode_compatible
|
||||
class Reporter(models.Model):
|
||||
first_name = models.CharField(max_length=30)
|
||||
last_name = models.CharField(max_length=30)
|
||||
@@ -22,7 +20,6 @@ class Reporter(models.Model):
|
||||
return "%s %s" % (self.first_name, self.last_name)
|
||||
|
||||
|
||||
@python_2_unicode_compatible
|
||||
class Article(models.Model):
|
||||
headline = models.CharField(max_length=100)
|
||||
pub_date = models.DateField()
|
||||
@@ -31,7 +28,6 @@ class Article(models.Model):
|
||||
return self.headline
|
||||
|
||||
|
||||
@python_2_unicode_compatible
|
||||
class Writer(models.Model):
|
||||
reporter = models.ForeignKey(Reporter, models.CASCADE)
|
||||
article = models.ForeignKey(Article, models.CASCADE)
|
||||
|
||||
Reference in New Issue
Block a user