Re: Creating users with name and email - Mailing list pgsql-novice

From Tom Lane
Subject Re: Creating users with name and email
Date
Msg-id 25874.1149386524@sss.pgh.pa.us
Whole thread Raw
In response to Creating users with name and email  (Andreas Burkhardt <rootshell@web.de>)
List pgsql-novice
Andreas Burkhardt <rootshell@web.de> writes:
> 1. adding the new columns to pg_authid?

> 2. CREATE TABLE users (
> email VARCHAR ) INHERITS (pg_authid);

> 3. CREATE TABLE users (
> rolname VARCHAR REFERENCES pg_authid ( rolname ),
> email VARCHAR );

Actually, none of those will work.  You can't modify system catalogs (at
least not without a lot of internals work).  You can make a users table
OK, you just can't set up a foreign-key linkage to pg_authid ...

            regards, tom lane

pgsql-novice by date:

Previous
From: Tom Lane
Date:
Subject: Re: Postgresql fail as boot time
Next
From: "Greg"
Date:
Subject: Display large object from database