Below is the command to add a boolean data type column as default false to an existing table in MySQL:
ALTER TABLE YourTableName ADD COLUMN YourColumnName BIT Default 0;
Below is the command to add a boolean data type column as default false to an existing table in MySQL:
ALTER TABLE YourTableName ADD COLUMN YourColumnName BIT Default 0;