Re: [GENERAL] Disabling FK for tables in Postgresql
In response to Josh Harrison : > Hi > Is it possible to disable FK constraints in Postgresql? You can set the constraint deferred (if the constraint defined deferrable) or drop the constraint. http://www.postgresql.org/docs/current/static/sql-set-constraints.html Regards, Andreas -- Andreas Kr
[GENERAL] Disabling FK for tables in Postgresql
Hi Is it possible to disable FK constraints in Postgresql? Thanks Josh