how to create a new column in table and set the default table postgresql code example
Example 1: postgresql change default value
ALTER TABLE ONLY users ALTER COLUMN lang SET DEFAULT 'en_GB';
Example 2: Postgres: Create Column add constraint to the column with Query Output
ALTER TABLE customers
ADD COLUMN contact_name VARCHAR NOT NULL;