From 21030324d032cda4322d4fe6bf10e7c74d05c673 Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Mon, 05 Sep 2011 15:58:11 -0400 Subject: [PATCH] Improved memcache connection procedure from release-0.6; use call_user_func to trigger session gc handlers --- SQL/sqlite.initial.sql | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/SQL/sqlite.initial.sql b/SQL/sqlite.initial.sql index 875b3cb..d2885e9 100644 --- a/SQL/sqlite.initial.sql +++ b/SQL/sqlite.initial.sql @@ -31,7 +31,8 @@ email varchar(255) NOT NULL default '', firstname varchar(128) NOT NULL default '', surname varchar(128) NOT NULL default '', - vcard text NOT NULL default '' + vcard text NOT NULL default '', + words text NOT NULL default '' ); CREATE INDEX ix_contacts_user_id ON contacts(user_id, email); @@ -55,6 +56,8 @@ PRIMARY KEY (contactgroup_id, contact_id) ); +CREATE INDEX ix_contactgroupmembers_contact_id ON contactgroupmembers (contact_id); + -- -------------------------------------------------------- -- Gitblit v1.9.1