From dc199c1cd7cde42aac3857b52cae08d349a88f41 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 26 Nov 2001 21:01:13 +0000 Subject: [PATCH] Update for all priviledge items. --- doc/src/sgml/user-manag.sgml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/doc/src/sgml/user-manag.sgml b/doc/src/sgml/user-manag.sgml index 61f30a99d3..cdfeaea31e 100644 --- a/doc/src/sgml/user-manag.sgml +++ b/doc/src/sgml/user-manag.sgml @@ -142,15 +142,17 @@ ALTER GROUP name DROP USER uname1 - Currently, there are five different privileges: select (read), - insert (append), update (write), delete, and - RULE, the permission to create a rewrite rule on - a table. The right to modify or destroy an object is always the - privilege of the owner only. To assign privileges, the - GRANT command is used. So, if + There are several different privileges: SELECT + (read), INSERT (append), UPDATE + (write), DELETE, RULE, + REFERENCES (foreign key), and + TRIGGER. (See the GRANT manual + page for more detailed information.) The right to modify or destroy + an object is always the privilege of the owner only. To assign + privileges, the GRANT command is used. So, if joe is an existing user, and - accounts is an existing table, write access can - be granted with + accounts is an existing table, write access can be + granted with GRANT UPDATE ON accounts TO joe; -- 2.40.0