Default UUID in Postgres

Поиск
Список
Период
Сортировка
От Swaminathan Saikumar
Тема Default UUID in Postgres
Дата
Msg-id 82692d4a0807091632p49febb89vefae7416e1534b53@mail.gmail.com
обсуждение исходный текст
Ответы Re: Default UUID in Postgres  (Christophe <xof@thebuild.com>)
Список pgsql-general
Hello,

I created a Postgres table with a UUID. I want the UUID to be populated by default.

Sample table:
CREATE TABLE "t"
(
  token uuid NOT NULL,
  CONSTRAINT unique_token UNIQUE (token)
);

I tried out this post:
http://archives.postgresql.org/pgsql-general/2006-08/msg01452.php
CREATE TABLE t (id UUID DEFAULT 'uuid(4)' PRIMARY KEY);

and got an error that uuid(4) is undefined.

I then tried out:
http://www.postgresql.org/docs/8.3/static/uuid-ossp.html
using uuid_generate_v4() for the default.

That didn't work as well.

Can anyone help please?

Thanks!

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

Предыдущее
От: Gwyneth Morrison
Дата:
Сообщение: Re: MSSQL to PostgreSQL
Следующее
От: Iv Ray
Дата:
Сообщение: Re: MSSQL to PostgreSQL