From 836f6783a06e322d0c9e09eb39a75e6643eba114 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Sun, 17 May 2020 15:32:37 +0200 Subject: [PATCH] Update database structure --- docs/db_struct.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/db_struct.sql b/docs/db_struct.sql index d57f676..517a4c8 100644 --- a/docs/db_struct.sql +++ b/docs/db_struct.sql @@ -451,6 +451,7 @@ CREATE TABLE `sondage` ( `ID_texte` int(11) NOT NULL, `date_creation` datetime NOT NULL, `question` varchar(255) NOT NULL, + `allow_new_choices` int(11) DEFAULT '0', PRIMARY KEY (`ID`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1;