Allows the remind_next field to be set to NULL so that it is actually possible to...
authorVincent Zanotti <vincent.zanotti@m4x.org>
Mon, 1 Jun 2009 19:18:33 +0000 (21:18 +0200)
committerVincent Zanotti <vincent.zanotti@m4x.org>
Mon, 1 Jun 2009 19:18:33 +0000 (21:18 +0200)
Signed-off-by: Vincent Zanotti <vincent.zanotti@m4x.org>
upgrade/0.10.1/00_inscription.sql

index 36f5e77..5544217 100644 (file)
@@ -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;