fix: [install:MySQL] Create `perm_galaxy` in roles table before updating

rows
pull/6120/head
mokaddem 2020-06-25 10:46:31 +02:00
parent 6254d49250
commit e5346f20a0
No known key found for this signature in database
GPG Key ID: 164C473F627A06FA
1 changed files with 1 additions and 0 deletions

View File

@ -805,6 +805,7 @@ CREATE TABLE IF NOT EXISTS `roles` (
`perm_publish_zmq` tinyint(1) NOT NULL DEFAULT 0,
`perm_publish_kafka` tinyint(1) NOT NULL DEFAULT 0,
`perm_decaying` tinyint(1) NOT NULL DEFAULT 0,
`perm_galaxy_editor` tinyint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;