Create boolean field in mysql

Hi,

Want to create a boolean field in mysql for a table detailing what users are online and who are not.

What type should I set the field to as I can’t seem to see boolean.

it’s usuallu just “boolean” but you could just use an “INT” field with a vlue of 1 or 0 instead, yes?

i would use BIT. 1 for true. 0 for falsel