From 2efee0a3e8bc17644106002e47dd9293a79a641a Mon Sep 17 00:00:00 2001 From: Guillaume Rousse <guillaume.rousse@renater.fr> Date: Tue, 24 Nov 2020 16:37:28 +0100 Subject: [PATCH] fix SQL schema token field has been renamed in #c72f46b --- conf/manager.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/manager.sql b/conf/manager.sql index 6e8fe9c..3edf346 100644 --- a/conf/manager.sql +++ b/conf/manager.sql @@ -6,7 +6,7 @@ CREATE TABLE tokens ( creation_date datetime DEFAULT NULL, expiration_date datetime DEFAULT NULL, PRIMARY KEY (id), - KEY token (token), + KEY secret (secret), KEY email_entity (email_address,entityid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- GitLab