ALTER TABLE users
ADD COLUMN "priv_user" BOOLEAN NOT NULL DEFAULT FALSE;
ALTER TABLE ONLY users ALTER COLUMN lang SET DEFAULT 'en_GB';
CREATE TABLE products (
product_no integer,
name text,
price numeric DEFAULT 9.99
);
ALTER TABLE your_tble ADD COLUMN your_col VARCHAR(8) DEFAULT 'sometext';
score INTEGER DEFAULT 1
/* The variable name is score, and the default value for it is 1 */