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
Just for future reference, if you already have a boolean column and you just want to add a default do:
ALTER TABLE users ALTER COLUMN priv_user SET DEFAULT false;