From: Vincent Zanotti Date: Mon, 1 Jun 2009 19:18:33 +0000 (+0200) Subject: Allows the remind_next field to be set to NULL so that it is actually possible to... X-Git-Tag: xorg/0.10.1~69 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=a6b247aeaa2eb84a038a68f398f910d4f301b154;p=platal.git Allows the remind_next field to be set to NULL so that it is actually possible to disable a onebox (for instance if the user did accept our offer). Signed-off-by: Vincent Zanotti --- diff --git a/upgrade/0.10.1/00_inscription.sql b/upgrade/0.10.1/00_inscription.sql index 36f5e77..5544217 100644 --- a/upgrade/0.10.1/00_inscription.sql +++ b/upgrade/0.10.1/00_inscription.sql @@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS reminder ( type_id INT NOT NULL, status ENUM('yes', 'no', 'dismissed') NOT NULL, remind_last TIMESTAMP NOT NULL, - remind_next TIMESTAMP NOT NULL, + remind_next TIMESTAMP NULL, PRIMARY KEY(uid, type_id) ) CHARSET=utf8;