mirror of
https://github.com/django/django.git
synced 2025-11-01 12:25:37 +00:00
Fixed #7190 -- Corrected a problem with Boolean value handling on the MySQL backend. Thanks to George Vilches for the initial patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12900 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
2fa2cf0a09
commit
271bcda04a
4 changed files with 62 additions and 2 deletions
|
|
@ -67,6 +67,8 @@ class Post(models.Model):
|
|||
class NullBooleanModel(models.Model):
|
||||
nbfield = models.NullBooleanField()
|
||||
|
||||
class BooleanModel(models.Model):
|
||||
bfield = models.BooleanField()
|
||||
|
||||
###############################################################################
|
||||
# ImageField
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue