From: Michael M Slusarz Date: Tue, 25 May 2010 04:16:26 +0000 (-0600) Subject: Preserve SQL create (pseudo)code in driver comments X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=5eb7ab8ad02933850335019631c3c3646088c1bd;p=horde.git Preserve SQL create (pseudo)code in driver comments --- 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/) *