geary/sql/version-005.sql
Michael Gratton cb8150ce03 Remove existing contact harvesting mechanism
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.
2019-06-13 16:28:59 +10:00

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
);