What steps will reproduce the problem?
1. Currently using revision 10982 of django-trunk
2. Process of validating the modules -- ./manage syncdb
Error produced:
Error: One or more models did not validate:
forum.thread: "sticky": BooleanFields do not accept null values. Use a
NullBoole anField instead.
forum.thread: "closed": BooleanFields do not accept null values. Use a
NullBoole anField instead.
Fix for error:
'BooleanField' - used for two-value (true or false) logic.
'NullBooleanField' - used for three-value (true, false or null) logic.
Original issue reported on code.google.com by Cronei...@gmail.com on 12 Jun 2009 at 5:27
Original issue reported on code.google.com by
Cronei...@gmail.com
on 12 Jun 2009 at 5:27Attachments: