Even setting the type to boolean didn't work
I created a simple table :
Shifts
TableID Int Primary Key Not Null
IsLocked boolean
then when I run this sql in the Execute Sql pane on sql studio
Insert Into Shifts (TableID,IsLocked) Values (1,true)
it threw an error
changing it to
Insert Into Shifts (TableID,IsLocked) Values (1,1)
worked
So I'll store them as Int with false=0 and true=1
cheers, Ricky