Default UUID in Postgres - Mailing list pgsql-general

From Swaminathan Saikumar
Subject Default UUID in Postgres
Date
Msg-id 82692d4a0807091632p49febb89vefae7416e1534b53@mail.gmail.com
Whole thread Raw
Responses Re: Default UUID in Postgres
List 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 by date:

Previous
From: Gwyneth Morrison
Date:
Subject: Re: MSSQL to PostgreSQL
Next
From: Iv Ray
Date:
Subject: Re: MSSQL to PostgreSQL