Work around.
Add the column.

alter table fred
ADD VERIFICATION_1 VARCHAR2(1);

Set all your values.
update fred
set VERIFICATION_1 = 'N';

Then:
alter table fred modify verification_1 default 'N';