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"
|
Список | 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 по дате отправления: