select * from information_schema.table_constraints;
Drop constraints
ALTER TABLE <my_table> DROP CONSTRAINT <constraint_name>
Ref: Drop constraint by name in Postgresql