Problem with changing properties of a table in postgreSQL
Today I just wanted to change character varying in one of my table on postgreSQL database with this command: alter table “TABLE_Name” alter column “COLUMN_NAME” type character varying (72); But …