Changes between Initial Version and Version 2 of Ticket #7190


Ignore:
Timestamp:
Jun 16, 2008, 11:18:35 AM (16 years ago)
Author:
Ramiro Morales
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #7190 – Description

    initial v2  
    11In some cases, a !BooleanField returns an integer instead of a bool. The following example uses a MySQL backend:
    2 
     2{{{
    33# models.py
    44from django.db import models
     
    66class Simple(models.Model):
    77    b = models.!BooleanField()
     8}}}
    89--------------------------------------------------------------------
    910{{{
Back to Top