I am looking for the syntax to add a column to a MySQL database with a default value of 0
Reference
You can try this,
ALTER TABLE table_name ADD column_name INT DEFAULT 0;