From: Vincent Zanotti Date: Mon, 1 Jun 2009 22:02:37 +0000 (+0200) Subject: Fix a typo in the reminder table. X-Git-Tag: xorg/0.10.1~64 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=22f99f968b9233dd0ebb4b608b590371600ce5c5;p=platal.git Fix a typo in the reminder table. Signed-off-by: Vincent Zanotti --- diff --git a/templates/reminder/default.tpl b/templates/reminder/base.tpl similarity index 77% rename from templates/reminder/default.tpl rename to templates/reminder/base.tpl index f236497..7250525 100644 --- a/templates/reminder/default.tpl +++ b/templates/reminder/base.tpl @@ -20,18 +20,22 @@ {* *} {**************************************************************************} - + {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *} diff --git a/upgrade/0.10.1/00_inscription.sql b/upgrade/0.10.1/00_inscription.sql index a675433..a23ef9e 100644 --- a/upgrade/0.10.1/00_inscription.sql +++ b/upgrade/0.10.1/00_inscription.sql @@ -27,7 +27,7 @@ DROP TABLE IF EXISTS reminder; CREATE TABLE IF NOT EXISTS reminder ( uid INT NOT NULL, type_id INT NOT NULL, - status ENUM('yes', 'no', 'dismissed') NOT NULL, + status ENUM('yes', 'no', 'dismiss') NOT NULL, remind_last TIMESTAMP NOT NULL, remind_next TIMESTAMP NULL, PRIMARY KEY(uid, type_id)