summaryrefslogtreecommitdiff
path: root/tests/m2m_regress
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-09-03 11:51:34 -0400
committerTim Graham <timograham@gmail.com>2013-09-03 11:51:34 -0400
commit3db66b1d65c12a94476017cbcc86e72fd842d29e (patch)
treeef333f7ca61a877e129bfd040a510045972d8b3b /tests/m2m_regress
parent8f7f8bf6884ada8622bc3696c7465c904164d314 (diff)
downloaddjango-3db66b1d65c12a94476017cbcc86e72fd842d29e.tar.gz
Updated syncdb -> migrate in tests.
Diffstat (limited to 'tests/m2m_regress')
-rw-r--r--tests/m2m_regress/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/m2m_regress/models.py b/tests/m2m_regress/models.py
index 1a4a6df354..abd012b3d0 100644
--- a/tests/m2m_regress/models.py
+++ b/tests/m2m_regress/models.py
@@ -57,7 +57,7 @@ class Worksheet(models.Model):
# Regression for #11226 -- A model with the same name that another one to
# which it has a m2m relation. This shouldn't cause a name clash between
# the automatically created m2m intermediary table FK field names when
-# running syncdb
+# running migrate
class User(models.Model):
name = models.CharField(max_length=30)
friends = models.ManyToManyField(auth.User)