mirror of
https://github.com/django/django.git
synced 2025-09-26 12:09:19 +00:00
Fixed #13821 -- Added a double-quoting to the PostgreSQL sequence reset code. Thanks to PaulM for the report, and to PaulM and Simon Meers for their work on the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13450 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
bab9aab9a2
commit
398415fc23
2 changed files with 7 additions and 4 deletions
|
@ -51,6 +51,8 @@ class Post(models.Model):
|
|||
text = models.TextField()
|
||||
tags = generic.GenericRelation('Tag')
|
||||
|
||||
class Meta:
|
||||
db_table = 'CaseSensitive_Post'
|
||||
|
||||
qn = connection.ops.quote_name
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue