strict change column type table postgre from string to int
ALTER TABLE table_name ALTER COLUMN column_name TYPE BIGINT USING (column_name::bigint);
Danang Setya Pramana - Working Memory
This is my working memory when i forgot some command and some code for my work
ALTER TABLE table_name ALTER COLUMN column_name TYPE BIGINT USING (column_name::bigint);
ALTER TABLE table_name DROP COLUMN column_name;