PostgreSQL: How to Disable or Enable Foreign Key Constraint of a Table

https://www.dbrnd.com/2017/02/postgresql-how-to-disable-or-enable-foreign-key-constraint-of-a-table-data-migration-bulk-operation/

ALTER TABLE table_name DISABLE TRIGGER ALL;
INSERT INTO table_name VALUES (1,6,50,60,90);
ALTER TABLE table_name ENABLE TRIGGER ALL;