Is there a boolean type in MySQL? I created field in the table 'BOOL' - it was converted to TINYINT(1) ?
No boolean data type so you have to use tinyint and store 0:1
Note that you can define a field as BOOL or BOOLEAN, but they are, in fact, just synonyms for TINYINT(1) (and the values TRUE and FALSE are aliases for 1 and 0).