[fix] mysql.sql fix : do not create certificates table if already exists

This commit is contained in:
Benjamin Sonntag 2018-06-24 16:10:08 +02:00
parent 6fd89455fb
commit e83a526c57
1 changed files with 1 additions and 1 deletions

View File

@ -772,7 +772,7 @@ CREATE TABLE IF NOT EXISTS `csrf` (
-- SSL managment -- SSL managment
CREATE TABLE `certificates` ( CREATE TABLE IF NOT EXISTS `certificates` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT, `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uid` int(10) unsigned NOT NULL, `uid` int(10) unsigned NOT NULL,
`status` tinyint(3) unsigned NOT NULL, `status` tinyint(3) unsigned NOT NULL,