Re: Alter table to "on update cascade" - Mailing list pgsql-general

From Richard Broersma
Subject Re: Alter table to "on update cascade"
Date
Msg-id AANLkTim0_j4QhMxm0PQ22MuOXR4iPW1zz=t5PYeRUX_1@mail.gmail.com
Whole thread Raw
In response to Re: Alter table to "on update cascade"  (David Fetter <david@fetter.org>)
Responses Re: Alter table to "on update cascade"  (Andreas Kretschmer <akretschmer@spamfence.net>)
Re: Alter table to "on update cascade"  (Aram Fingal <fingal@multifactorial.com>)
List pgsql-general
On Wed, Nov 17, 2010 at 8:43 AM, David Fetter <david@fetter.org> wrote:

> You can do it like this:
>
> BEGIN;
> ALTER TABLE foo DROP CONSTRAINT your_constraint;
> ALTER TABLE foo ADD FOREIGN KEY ...;
> COMMIT;

The nice thing about the ALTER TABLE statement is that you can do it
in one command:


ALTER TABLE foo
DROP CONSTRAINT your_constraint,
 ADD CONSTRAINT your_constraint FOREIGN KEY ...
              ON UPDATE CASCADE ON DELETE RESTRICT;


--
Regards,
Richard Broersma Jr.

Visit the Los Angeles PostgreSQL Users Group (LAPUG)
http://pugs.postgresql.org/lapug

pgsql-general by date:

Previous
From: David Fetter
Date:
Subject: Re: Re: Storing old and new tuple values after an UPDATE, INSERT or DELETE
Next
From: Allan Kamau
Date:
Subject: Trying to obtain the intersect of two tsvector values