mirror of
https://github.com/django/django.git
synced 2025-09-26 20:19:16 +00:00
Fixed #19391 -- Oracle specific failure in tests
The failure was caused by using None as a choice for a CharField. To avoid Oracle's "" <-> NULL handling the field type was changed to IntegerField.
This commit is contained in:
parent
c196e01100
commit
632cf32b43
1 changed files with 2 additions and 2 deletions
|
@ -662,5 +662,5 @@ class Simple(models.Model):
|
|||
"""
|
||||
|
||||
class Choice(models.Model):
|
||||
choice = models.CharField(max_length=1, blank=True, null=True,
|
||||
choices=(('y','Yes'), ('n','No'), (None, 'No opinion')))
|
||||
choice = models.IntegerField(blank=True, null=True,
|
||||
choices=((1, 'Yes'), (0, 'No'), (None, 'No opinion')))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue