From 84f0307085c87b57290f4e39a214ce872a777ac3 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Tue, 11 Apr 2006 11:31:16 +0000 Subject: [PATCH] update unread_messages table for those who already have it --- src/common/check_paths.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/common/check_paths.py b/src/common/check_paths.py index 24dfc842b..e35ab8817 100644 --- a/src/common/check_paths.py +++ b/src/common/check_paths.py @@ -49,6 +49,9 @@ def assert_unread_msgs_table_exists(): ''' ) con.commit() + #FIXME: remove before release 0.10, it's temporary + cur.executescript('ALTER TABLE unread_messages ADD jid_id;') + con.commit() gajim.logger.init_vars() except sqlite.OperationalError, e: pass