Remove contact harvesting from DB version 005 (version 0.1.1), allowing the implementation of both ContactStoreImpl and ImapDB.Database to be cleaned up. Remove contact collection from ImapDB.Folder, reducing the numer of Gee objects created when creating/merging messages. Finally, remove the MessageAddresses object now that it is unused.
13 lines
248 B
SQL
13 lines
248 B
SQL
|
|
--
|
|
-- Create ContactTable for autocompletion contacts.
|
|
--
|
|
|
|
CREATE TABLE ContactTable (
|
|
id INTEGER PRIMARY KEY,
|
|
normalized_email TEXT NOT NULL,
|
|
real_name TEXT,
|
|
email TEXT UNIQUE NOT NULL,
|
|
highest_importance INTEGER NOT NULL
|
|
);
|
|
|