Below is the command to add a boolean datatype column to an existing table in mysql:
ALTER TABLE `YourTableName` ADD COLUMN `YourColumnName` BIT;Below is the command to add a boolean datatype column to an existing table in mysql:
ALTER TABLE `YourTableName` ADD COLUMN `YourColumnName` BIT;