mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-08 00:56:49 +01:00
- Cache synchronization using QRESYNC/CONDSTORE
- Fixed message ID updates in cache - Changed message flags handling + some fixes (e.g. fixed messages listing after delete)
This commit is contained in:
@@ -11,6 +11,7 @@ CREATE TABLE [dbo].[cache_index] (
|
||||
[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 @@ CREATE TABLE [dbo].[cache_messages] (
|
||||
[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 @@ GO
|
||||
|
||||
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]
|
||||
|
||||
Reference in New Issue
Block a user