mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-08 00:56:49 +01:00
- Merge devel-spellcheck branch:
- Added spellchecker exceptions dictionary (shared or per-user) - Added possibility to ignore words containing caps, numbers, symbols (spellcheck_ignore_* options)
This commit is contained in:
@@ -226,3 +226,13 @@ DROP TABLE contacts_tmp;
|
||||
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 (
|
||||
user_id integer DEFAULT NULL,
|
||||
"language" varchar(5) NOT NULL,
|
||||
data text NOT NULL
|
||||
);
|
||||
|
||||
CREATE UNIQUE INDEX ix_dictionary_user_language ON dictionary (user_id, "language");
|
||||
|
||||
Reference in New Issue
Block a user