I created a DOMAIN:
CREATE DOMAIN public.\"POSTAL_CODE\" AS character(5) NOT NULL;
I tried to set the default value:
ALTER
Try this: value should be in single quote like '00000'
ALTER DOMAIN public."POSTAL_CODE" set default '00000';