diff --git a/sql/mysql/upgrade/3.5.3/add_autoinc-5.sql b/sql/mysql/upgrade/3.5.3/add_autoinc-5.sql index 7bf4294..6d34b65 100644 --- a/sql/mysql/upgrade/3.5.3/add_autoinc-5.sql +++ b/sql/mysql/upgrade/3.5.3/add_autoinc-5.sql @@ -1,3 +1,5 @@ +update plugins set id = id + 1; +update upgrades set id = id + 1; alter table active_sessions change `id` `id` int (11) NOT NULL AUTO_INCREMENT; alter table archive_restoration_request change `id` `id` int (11) NOT NULL AUTO_INCREMENT; alter table archiving_settings change `id` `id` int (11) NOT NULL AUTO_INCREMENT;