I\'m adding a new, \"NOT NULL\" column to my Postgresql database using the following query (sanitized for the Internet):
ALTER TABLE mytable ADD COLUMN mycol
This worked for me: :)
ALTER TABLE your_table_name ADD COLUMN new_column_name int;