From 5eb7ab8ad02933850335019631c3c3646088c1bd Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Mon, 24 May 2010 22:16:26 -0600 Subject: [PATCH] Preserve SQL create (pseudo)code in driver comments --- imp/lib/Sentmail/Sql.php | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/imp/lib/Sentmail/Sql.php b/imp/lib/Sentmail/Sql.php index dd34b4301..93a114e5e 100644 --- a/imp/lib/Sentmail/Sql.php +++ b/imp/lib/Sentmail/Sql.php @@ -1,9 +1,25 @@ + * CREATE TABLE imp_sentmail ( + * sentmail_id BIGINT NOT NULL AUTO_INCREMENT, + * sentmail_who VARCHAR(255) NOT NULL, + * sentmail_ts BIGINT NOT NULL, + * sentmail_messageid VARCHAR(255) NOT NULL, + * sentmail_action VARCHAR(32) NOT NULL, + * sentmail_recipient VARCHAR(255) NOT NULL, + * sentmail_success INT NOT NULL, + * + * PRIMARY KEY (sentmail_id) + * ); + * + * CREATE INDEX sentmail_ts_idx ON imp_sentmail (sentmail_ts); + * CREATE INDEX sentmail_who_idx ON imp_sentmail (sentmail_who); + * CREATE INDEX sentmail_success_idx ON imp_sentmail (sentmail_success); + * * * Copyright 2010 The Horde Project (http://www.horde.org/) * -- 2.11.0