summaryrefslogtreecommitdiff
path: root/tests/schema/models.py
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2013-12-27 20:58:18 -0300
committerRamiro Morales <cramm0@gmail.com>2013-12-27 21:02:39 -0300
commit3518e9ec1f23f0278aefea6738f9d49eb7d4fe52 (patch)
tree8a4e0bf56913fb1499d940c580c164c3b446dbae /tests/schema/models.py
parent61cfcec5b7d47232a1d6facbde71d4cca35986eb (diff)
downloaddjango-3518e9ec1f23f0278aefea6738f9d49eb7d4fe52.tar.gz
Amend test table name so it doesn't clash.
Refs #21692 and 3efd1b8b939.
Diffstat (limited to 'tests/schema/models.py')
-rw-r--r--tests/schema/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/schema/models.py b/tests/schema/models.py
index c4c8225970..67cfcf6a89 100644
--- a/tests/schema/models.py
+++ b/tests/schema/models.py
@@ -111,7 +111,7 @@ class Thing(models.Model):
when = models.CharField(max_length=1, primary_key=True)
class Meta:
- db_table = 'select'
+ db_table = 'drop'
def __str__(self):
return self.when