geary/sql/Version-003.sql
Eric Gregory 6963063fd5 Send outgoing messages via Outbox folder: Closes #4569
Squashed commit of many patches that merged Eric's outbox patch
as well as additional changes to upgrade the database rather than
require it be wiped and some refactoring suggested by the Outbox
implementation.  Also updated Outbox to be fully atomic via
Transactions.
2012-06-13 11:54:20 -07:00

13 lines
201 B
SQL

--
-- SmtpOutboxTable
--
CREATE TABLE SmtpOutboxTable (
id INTEGER PRIMARY KEY,
ordering INTEGER,
message TEXT
);
CREATE INDEX SmtpOutboxOrderingIndex ON SmtpOutboxTable(ordering ASC);