[fix] mysql.sql fix : do not create certificates table if already exists
This commit is contained in:
parent
6fd89455fb
commit
e83a526c57
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue