Changes between Initial Version and Version 2 of Ticket #7190
- Timestamp:
- Jun 16, 2008, 11:18:35 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #7190 – Description
initial v2 1 1 In some cases, a !BooleanField returns an integer instead of a bool. The following example uses a MySQL backend: 2 2 {{{ 3 3 # models.py 4 4 from django.db import models … … 6 6 class Simple(models.Model): 7 7 b = models.!BooleanField() 8 }}} 8 9 -------------------------------------------------------------------- 9 10 {{{