mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-04 07:14:02 +01:00
- Merge devel-saved_search branch (Addressbook Saved Searches)
This commit is contained in:
@@ -227,6 +227,7 @@ DELETE FROM messages;
|
||||
DELETE FROM cache;
|
||||
CREATE INDEX ix_contactgroupmembers_contact_id ON contactgroupmembers (contact_id);
|
||||
|
||||
|
||||
-- Updates from version 0.6-stable
|
||||
|
||||
CREATE TABLE dictionary (
|
||||
@@ -236,3 +237,13 @@ CREATE TABLE dictionary (
|
||||
);
|
||||
|
||||
CREATE UNIQUE INDEX ix_dictionary_user_language ON dictionary (user_id, "language");
|
||||
|
||||
CREATE TABLE searches (
|
||||
search_id integer NOT NULL PRIMARY KEY,
|
||||
user_id integer NOT NULL DEFAULT '0',
|
||||
"type" smallint NOT NULL DEFAULT '0',
|
||||
name varchar(128) NOT NULL,
|
||||
data text NOT NULL
|
||||
);
|
||||
|
||||
CREATE UNIQUE INDEX ix_searches_user_type_name (user_id, type, name);
|
||||
|
||||
Reference in New Issue
Block a user