mirror of
https://github.com/django/django.git
synced 2025-11-20 03:30:00 +00:00
Fixed #4057 -- Fixed problem with quoting of sequence names on Postgres backends. Thanks, Gary Wilson.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5017 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
c64f7f065a
commit
c5f08954d5
3 changed files with 11 additions and 4 deletions
|
|
@ -7,6 +7,13 @@ class Animal(models.Model):
|
|||
def __str__(self):
|
||||
return self.common_name
|
||||
|
||||
class Plant(models.Model):
|
||||
name = models.CharField(maxlength=150)
|
||||
|
||||
class Meta:
|
||||
# For testing when upper case letter in app name; regression for #4057
|
||||
db_table = "Fixtures_regress_plant"
|
||||
|
||||
__test__ = {'API_TESTS':"""
|
||||
>>> from django.core import management
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue