Re: Alter table to "on update cascade"

Поиск
Список
Период
Сортировка
От David Fetter
Тема Re: Alter table to "on update cascade"
Дата
Msg-id 20101117164359.GE22765@fetter.org
обсуждение исходный текст
Ответ на Alter table to "on update cascade"  (Aram Fingal <fingal@multifactorial.com>)
Ответы Re: Alter table to "on update cascade"  (Richard Broersma <richard.broersma@gmail.com>)
Список pgsql-general
On Wed, Nov 17, 2010 at 11:32:32AM -0500, Aram Fingal wrote:
> I have a table where I should have declared a foreign key with ON
> UPDATE CASCADE and didn't.  Now I want to fix that.  From the
> documentation on www.postgresql.org, about ALTER TABLE it's not at
> all clear how to do this or even whether you can do this.

You can do it like this:

BEGIN;
ALTER TABLE foo DROP CONSTRAINT your_constraint;
ALTER TABLE foo ADD FOREIGN KEY ...;
COMMIT;

Cheers,
David.
--
David Fetter <david@fetter.org> http://fetter.org/
Phone: +1 415 235 3778  AIM: dfetter666  Yahoo!: dfetter
Skype: davidfetter      XMPP: david.fetter@gmail.com
iCal: webcal://www.tripit.com/feed/ical/people/david74/tripit.ics

Remember to vote!
Consider donating to Postgres: http://www.postgresql.org/about/donate

В списке pgsql-general по дате отправления:

Предыдущее
От: "A.M."
Дата:
Сообщение: Re: Re: Survey on backing up unlogged tables: help us with PostgreSQL development!
Следующее
От: Tomas Vondra
Дата:
Сообщение: Re: where is pg_stat_activity (and others) in the documentation?