Columns with DEFAULT specification cannot be added to a table using the <ALTER TABLE statement>.
The specification of NOT NULL DEFAULT NULL is not allowed.
User Action:
To add a column to one with an <ALTER TABLE statement>, specify it without a DEFAULT specification. Then define the DEFAULT in another <ALTER TABLE statement>. The added column then implicitly receives the DEFAULT value in all table rows.
Repeat the SQL statement after removing the DEFAULT specification.