Subject: | Uses 'true' and 'false' for booleans instead of 1 and 0 |
When I use the data_type of BOOLEAN on my DBIx::Class schemas it generates SQL that expects
either 1 or 0 for that column. E.g. on MySQL it creates an enum that only accepts 1 or 0. When I
try to add a row with this module it attempts to use 'true' or 'false' for the BOOLEAN column.
This works with SQLite's boolean column, but SQLite doesn't seem very picky. It is making some
parts of my project difficult to code because I am constantly having to test for 'true' or 1.
I have a patch locally, but it is so simple I don't know that it is worth posting.