Data type for checkbox control?

Hello, Everyone,

I’m using a back-end MySQL database for my DHX application. What data type should I use to store the state (checked/unchecked) of a checkbox control, please? Bit? Binary? Integer? String?

Thanks.

I found through trial and error that tinyint(1) works well.

checkbox works as thruthy/falsy values:
sitepoint.com/javascript-truthy-falsy/