I am looking for the syntax to add a column to a MySQL database with a default value of 0
Reference
This will work for ENUM type as default value
ALTER TABLE engagete_st.holidays add column `STATUS` ENUM('A', 'D') default 'A' AFTER `H_TYPE`;