Below is the command to add a boolean type column as default 1 to an existing table in mysql:
ALTER TABLE `YourTableName` ADD COLUMN `YourColumnName` BIT NOT NULL DEFAULT b'1'
Below is the command to add a boolean type column as default 1 to an existing table in mysql:
ALTER TABLE `YourTableName` ADD COLUMN `YourColumnName` BIT NOT NULL DEFAULT b'1'