summaryrefslogtreecommitdiff
path: root/tests/m2m_and_m2o/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/m2m_and_m2o/models.py')
-rw-r--r--tests/m2m_and_m2o/models.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/m2m_and_m2o/models.py b/tests/m2m_and_m2o/models.py
index 9e3cf7c1da..151f9987f8 100644
--- a/tests/m2m_and_m2o/models.py
+++ b/tests/m2m_and_m2o/models.py
@@ -15,12 +15,12 @@ class Issue(models.Model):
cc = models.ManyToManyField(User, blank=True, related_name='test_issue_cc')
client = models.ForeignKey(User, models.CASCADE, related_name='test_issue_client')
- def __str__(self):
- return str(self.num)
-
class Meta:
ordering = ('num',)
+ def __str__(self):
+ return str(self.num)
+
class StringReferenceModel(models.Model):
others = models.ManyToManyField('StringReferenceModel')