1
0
mirror of https://github.com/django/django.git synced 2025-03-31 11:37:06 +00:00

Amend test table name so it doesn't clash.

Refs #21692 and 3efd1b8b939.
This commit is contained in:
Ramiro Morales 2013-12-27 20:58:18 -03:00
parent 61cfcec5b7
commit 3518e9ec1f

View File

@ -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