From 9abd0f0089db877d2f6ec9f3a0b978ef3f11ce86 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Thu, 27 Nov 2008 06:25:31 -0500 Subject: [PATCH] - Allow UTF-8 folder names in config (#1485579) - Add junk_mbox option configuration in installer (#1485579) --- SQL/postgres.initial.sql | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/SQL/postgres.initial.sql b/SQL/postgres.initial.sql index 9fb8d32..d2e5698 100644 --- a/SQL/postgres.initial.sql +++ b/SQL/postgres.initial.sql @@ -21,7 +21,7 @@ alias character varying(128) DEFAULT ''::character varying NOT NULL, created timestamp with time zone DEFAULT now() NOT NULL, last_login timestamp with time zone DEFAULT now() NOT NULL, - "language" character varying(5) DEFAULT 'en'::character varying NOT NULL, + "language" character varying(5), preferences text DEFAULT ''::text NOT NULL ); @@ -135,6 +135,7 @@ ); CREATE INDEX cache_user_id_idx ON "cache" (user_id, cache_key); +CREATE INDEX cache_created_idx ON "cache" (created); -- -- Sequence "message_ids" -- Gitblit v1.9.1