Amend test table name so it doesn't clash.

Refs #21692 and 3efd1b8b93.
This commit is contained in:
Ramiro Morales 2013-12-27 20:58:18 -03:00
parent 61cfcec5b7
commit 3518e9ec1f
1 changed files with 1 additions and 1 deletions

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