summaryrefslogtreecommitdiff
path: root/tests/many_to_one
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2016-11-19 21:54:19 +0100
committerClaude Paroz <claude@2xlibre.net>2017-01-18 13:44:34 +0100
commitf3c43ad1fd9556f0fd026a5dfa93c67a5cf186ca (patch)
tree65ca40d4527b377845cdd382456383bf97caafa6 /tests/many_to_one
parentd7b9aaa366dd54ecc3142c588162e3adc7c2f7ac (diff)
downloaddjango-f3c43ad1fd9556f0fd026a5dfa93c67a5cf186ca.tar.gz
Refs #23919 -- Removed python_2_unicode_compatible decorator usage
Diffstat (limited to 'tests/many_to_one')
-rw-r--r--tests/many_to_one/models.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/many_to_one/models.py b/tests/many_to_one/models.py
index 09578b56a3..93b8029b2f 100644
--- a/tests/many_to_one/models.py
+++ b/tests/many_to_one/models.py
@@ -4,10 +4,8 @@ Many-to-one relationships
To define a many-to-one relationship, use ``ForeignKey()``.
"""
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)
@@ -17,7 +15,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()
@@ -30,7 +27,6 @@ class Article(models.Model):
ordering = ('headline',)
-@python_2_unicode_compatible
class City(models.Model):
id = models.BigAutoField(primary_key=True)
name = models.CharField(max_length=50)
@@ -39,7 +35,6 @@ class City(models.Model):
return self.name
-@python_2_unicode_compatible
class District(models.Model):
city = models.ForeignKey(City, models.CASCADE, related_name='districts', null=True)
name = models.CharField(max_length=50)
@@ -80,7 +75,6 @@ class ToFieldChild(models.Model):
# Multiple paths to the same model (#7110, #7125)
-@python_2_unicode_compatible
class Category(models.Model):
name = models.CharField(max_length=20)
@@ -92,7 +86,6 @@ class Record(models.Model):
category = models.ForeignKey(Category, models.CASCADE)
-@python_2_unicode_compatible
class Relation(models.Model):
left = models.ForeignKey(Record, models.CASCADE, related_name='left_set')
right = models.ForeignKey(Record, models.CASCADE, related_name='right_set')