From aa3a9a41f3fc8e36b681d97d301d637a3383add3 Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Thu, 22 Dec 2011 11:37:44 -0500
Subject: [PATCH] Put groups list into a fieldset to be consistent with the rest of the form

---
 SQL/postgres.update.sql |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/SQL/postgres.update.sql b/SQL/postgres.update.sql
index 7e650af..0db2e9e 100644
--- a/SQL/postgres.update.sql
+++ b/SQL/postgres.update.sql
@@ -101,7 +101,7 @@
 TRUNCATE messages;
 TRUNCATE cache;
 
--- Updates from version 0.6-stable
+-- Updates from version 0.6
 
 CREATE TABLE dictionary (
     user_id integer DEFAULT NULL
@@ -127,7 +127,7 @@
     CONSTRAINT searches_user_id_key UNIQUE (user_id, "type", name)
 );
 
-DROP SEQUENCE messages_ids;
+DROP SEQUENCE message_ids;
 DROP TABLE messages;
 
 CREATE TABLE cache_index (
@@ -165,3 +165,7 @@
 );
 
 CREATE INDEX cache_messages_changed_idx ON cache_messages (changed);
+
+-- Updates from version 0.7-beta
+
+ALTER TABLE "session" ALTER sess_id TYPE varchar(128);

--
Gitblit v1.9.1