In order to add a column to a table in PostgreSQL, we type the following:
ALTER TABLE myTable
ADD COLUMN columnName dataType constraint;
In order to add several columns, we do the following:
ALTER TABLE myTable
ADD COLUMN columnName dataType constraint,
ADD COLUMN columnName dataType constraint,
ADD COLUMN columnName dataType constraint;