Add PostgreSQL details
authorsimond <simond@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 19 Feb 2002 08:29:46 +0000 (08:29 +0000)
committersimond <simond@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 19 Feb 2002 08:29:46 +0000 (08:29 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2468 7612ce4b-ef26-0410-bec9-ea0150e637f0

doc/db-backend.txt

index 3712c3765889afcf8a1b0f11f43a7b06366d4c2b..1e12922e834c63fe7698b9ab27ea84d5fe14b44b 100644 (file)
@@ -55,6 +55,19 @@ The table structure should be similar to this (for MySQL):
      KEY firstname (firstname,lastname)
    );
 
+and similar to this for PostgreSQL:
+CREATE TABLE "address" (
+   "owner" varchar(128) NOT NULL,
+   "nickname" varchar(16) NOT NULL,
+   "firstname" varchar(128) NOT NULL,
+   "lastname" varchar(128) NOT NULL,
+   "email" varchar(128) NOT NULL,
+   "label" varchar(255) NOT NULL,
+   CONSTRAINT "address_pkey" PRIMARY KEY ("nickname", "owner")
+);
+CREATE  UNIQUE INDEX "address_firstname_key" ON "address"
+   ("firstname", "lastname");
+
 
 Next, edit your configuration so that the address book DSN (Data Source
 Name) is specified, this can be done using either conf.pl or via the
@@ -82,6 +95,14 @@ The table structure should be similar to this (for MySQL):
     PRIMARY KEY (user,prefkey)
   );
 
+and for PostgreSQL:
+CREATE TABLE "userprefs" (
+   "user" varchar(128) NOT NULL,
+   "prefkey" varchar(64) NOT NULL,
+   "prefval" text,
+   CONSTRAINT "userprefs_pkey" PRIMARY KEY ("prefkey", "user")
+);
+
 Next, edit your configuration so that the preferences DSN (Data Source
 Name) is specified, this can be done using either conf.pl or via the
 administration plugin. The DSN should look something like: