insert data into postgres new column code example
Example: postgresql insert column
ALTER TABLE table_name
ADD COLUMN new_column_name data_type constraint;
ALTER TABLE table_name
ADD COLUMN new_column_name data_type constraint;