better merge from ../DATABASE_*

git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@56 a1433add-5e2c-0410-b055-b7f2511e0802
postfixadmin-2.3
David Goodwin 19 years ago
parent b7a799ba18
commit 46db3b7033

@ -3,6 +3,11 @@ PostgreSQL
Issue the following commands to setup the appropriate table structure.
$ createuser -P vacation
Schema follows :
DROP TABLE vacation,vacation_notification CASCADE;
CREATE TABLE vacation (
email character varying(255) PRIMARY KEY,
@ -30,17 +35,9 @@ CREATE TABLE vacation_notification (
GRANT
SELECT,INSERT,UPDATE,DELETE
ON
admin,
alias,
domain,
domain_admins,
log,
mailbox,
vacation
TO postfixadmin;
GRANT SELECT ON alias,domain,mailbox TO postfix;
GRANT SELECT ON vacation TO vacation;
GRANT SELECT,INSERT,DELETE ON vacation_notification TO vacation;

Loading…
Cancel
Save