You can approximate a boolean datatype in mysql using either enum (see the manual) or just use a tinyint or something and store either a 0 or a 1.
Any enum is good because you can require that the value is either 1 or 0, and no other values are allowed.
That's about as boolean as you can get.