From e83a526c57225ef0c80a323ed0361abbb53e56ba Mon Sep 17 00:00:00 2001 From: Benjamin Sonntag Date: Sun, 24 Jun 2018 16:10:08 +0200 Subject: [PATCH] [fix] mysql.sql fix : do not create certificates table if already exists --- install/mysql.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/mysql.sql b/install/mysql.sql index 374a30ba..02b196d4 100644 --- a/install/mysql.sql +++ b/install/mysql.sql @@ -772,7 +772,7 @@ CREATE TABLE IF NOT EXISTS `csrf` ( -- SSL managment -CREATE TABLE `certificates` ( +CREATE TABLE IF NOT EXISTS `certificates` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `uid` int(10) unsigned NOT NULL, `status` tinyint(3) unsigned NOT NULL,