From 7b2bf71c332563517b8f0f30c6f214913dc4169e Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Mon, 19 Sep 2011 02:15:58 -0400 Subject: [PATCH] - Add lost cache_index.valid column definition --- SQL/postgres.update.sql | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/SQL/postgres.update.sql b/SQL/postgres.update.sql index 741495f..7e650af 100644 --- a/SQL/postgres.update.sql +++ b/SQL/postgres.update.sql @@ -135,6 +135,7 @@ REFERENCES users (user_id) ON DELETE CASCADE ON UPDATE CASCADE, mailbox varchar(255) NOT NULL, changed timestamp with time zone DEFAULT now() NOT NULL, + valid smallint NOT NULL DEFAULT 0, data text NOT NULL, PRIMARY KEY (user_id, mailbox) ); -- Gitblit v1.9.1