Re: BUG #1079: ALTER TABLE does not add foreign key

Поиск
Список
Период
Сортировка
От Richard Huxton
Тема Re: BUG #1079: ALTER TABLE does not add foreign key
Дата
Msg-id 200402111844.56307.dev@archonet.com
обсуждение исходный текст
Ответ на BUG #1079: ALTER TABLE does not add foreign key  ("PostgreSQL Bugs List" <pgsql-bugs@postgresql.org>)
Список pgsql-bugs
On Wednesday 11 February 2004 17:29, PostgreSQL Bugs List wrote:
> The following bug has been logged online:
>
> Bug reference:      1079
> Logged by:          Vladimir Sitarchuk
> Email address:      vova@densoft.com.ua
>
> PostgreSQL version: 7.3
> Operating system:   Red Hat 9
> Description:        ALTER TABLE does not add foreign key
>
> Details:
> ALTER TABLE tablename ADD COLUMN columnname INT CONSTRAIN cntrname
> REFERENCES tablename2(col)
> adds the column But it does not add the foreign key constrain.

Perhaps the manual should be clearer on this.

You can add a foreign key with something like (example from manual):
ALTER TABLE distributors ADD CONSTRAINT distfk FOREIGN KEY (address)
REFERENCES addresses(address) MATCH FULL;
--
  Richard Huxton
  Archonet Ltd

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

Предыдущее
От: "PostgreSQL Bugs List"
Дата:
Сообщение: BUG #1079: ALTER TABLE does not add foreign key
Следующее
От: Tom Lane
Дата:
Сообщение: Re: BUG #1079: ALTER TABLE does not add foreign key