Is this proper postgresql syntax to add a column to a table with a default value of false
false
ALTER TABLE users ADD \"priv_user\" BIT ALTER priv_user SE
If you are using postgresql then you have to use column type BOOLEAN in lower case as boolean.
ALTER TABLE users ADD "priv_user" boolean DEFAULT false;