renaming columns in postgresq; code example
Example 1: how to update column name in psql
ALTER TABLE table_name
RENAME COLUMN old_name TO new_name;
Example 2: psql filed name alter
ALTER TABLE table_name
RENAME column_name TO new_column_name;