[ALTER]
TABLENAME
ADD#FIELDNAME#int#NULL#0#
[END]
The code above would add the field FIELDNAME to the table TABLENAME. The field is integer, does allow NULL (if you don't want allow the field to be NULL replace NULL by NOT NULL) and the default value is set to 0.
Hope that helps.