I have the following table in Postgesql
:
CREATE TABLE customers
(
customerid integer NOT NULL,
customerid2 text NOT NULL,
....
)
How can I check if customerid2
is used as FK in other tables?
suppose I will drop this column, before it execute the actual drop - it checks who uses it. How do I perform that check manualy?