diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-05-25 15:37:46 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-05-25 15:37:46 +0200 |
commit | 50abd557184326f173357b50e7593dc3f452be91 (patch) | |
tree | dc5f097ba3eaac279e9f0021172e7dbbc878a706 /SQL/postgres.initial.sql | |
parent | a963a2b38cf571b29543d17edadc46f91caba3aa (diff) |
Added shared (cross-user) cache
Diffstat (limited to 'SQL/postgres.initial.sql')
-rw-r--r-- | SQL/postgres.initial.sql | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/SQL/postgres.initial.sql b/SQL/postgres.initial.sql index f3b368f7d..c54f05f0b 100644 --- a/SQL/postgres.initial.sql +++ b/SQL/postgres.initial.sql @@ -174,6 +174,20 @@ CREATE INDEX cache_user_id_idx ON "cache" (user_id, cache_key); CREATE INDEX cache_created_idx ON "cache" (created); -- +-- Table "cache_shared" +-- Name: cache_shared; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE "cache_shared" ( + cache_key varchar(255) NOT NULL, + created timestamp with time zone DEFAULT now() NOT NULL, + data text NOT NULL +); + +CREATE INDEX cache_shared_cache_key_idx ON "cache_shared" (cache_key); +CREATE INDEX cache_shared_created_idx ON "cache_shared" (created); + +-- -- Table "cache_index" -- Name: cache_index; Type: TABLE; Schema: public; Owner: postgres -- @@ -274,4 +288,4 @@ CREATE TABLE "system" ( value text ); -INSERT INTO system (name, value) VALUES ('roundcube-version', '2013042700'); +INSERT INTO system (name, value) VALUES ('roundcube-version', '2013052500'); |