From 609d3923d7dc674263ddea990387dbf5488fabc6 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Sun, 18 Sep 2011 05:02:35 -0400
Subject: [PATCH] - Cache synchronization using QRESYNC/CONDSTORE - Fixed message ID updates in cache - Changed message flags handling + some fixes (e.g. fixed messages listing after delete)

---
 SQL/mssql.initial.sql |   15 +++------------
 1 files changed, 3 insertions(+), 12 deletions(-)

diff --git a/SQL/mssql.initial.sql b/SQL/mssql.initial.sql
index eb5f20b..b3bb1c8 100644
--- a/SQL/mssql.initial.sql
+++ b/SQL/mssql.initial.sql
@@ -11,6 +11,7 @@
 	[user_id] [int] NOT NULL ,
 	[mailbox] [varchar] (128) COLLATE Latin1_General_CI_AI NOT NULL ,
 	[changed] [datetime] NOT NULL ,
+	[valid] [char] (1) COLLATE Latin1_General_CI_AI NOT NULL ,
 	[data] [text] COLLATE Latin1_General_CI_AI NOT NULL 
 ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
 GO
@@ -29,12 +30,7 @@
 	[uid] [int] NOT NULL ,
 	[changed] [datetime] NOT NULL ,
 	[data] [text] COLLATE Latin1_General_CI_AI NOT NULL 
-	[seen] [char](1) NOT NULL ,
-	[deleted] [char](1) NOT NULL ,
-	[answered] [char](1) NOT NULL ,
-	[forwarded] [char](1) NOT NULL ,
-	[flagged] [char](1) NOT NULL ,
-	[mdnsent] [char](1) NOT NULL ,
+	[flags] [int](1) NOT NULL ,
 ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
 GO
 
@@ -229,12 +225,7 @@
 
 ALTER TABLE [dbo].[cache_messages] ADD 
 	CONSTRAINT [DF_cache_messages_changed] DEFAULT (getdate()) FOR [changed]
-	CONSTRAINT [DF_cache_messages_seen] DEFAULT (0) FOR [seen],
-	CONSTRAINT [DF_cache_messages_deleted] DEFAULT (0) FOR [deleted],
-	CONSTRAINT [DF_cache_messages_answered] DEFAULT (0) FOR [answered],
-	CONSTRAINT [DF_cache_messages_forwarded] DEFAULT (0) FOR [forwarded],
-	CONSTRAINT [DF_cache_messages_flagged] DEFAULT (0) FOR [flagged],
-	CONSTRAINT [DF_cache_messages_mdnsent] DEFAULT (0) FOR [mdnsent],
+	CONSTRAINT [DF_cache_messages_flags] DEFAULT (0) FOR [flags],
 GO
 
 CREATE  INDEX [IX_cache_messages_user_id] ON [dbo].[cache_messages]([user_id]) ON [PRIMARY]

--
Gitblit v1.9.1