Commit 87b3856fb4421afcf1f48aa004b7a026b33baf40
1 parent
4b0d7c1f
Merged in from STABLE trunk...
KTS-3556 "The auto increment DB script must run first on upgrading" Fixed. Added update statements to get past 0 id values in plugins and upgrades tables. Committed by: Conrad Vermeulen Reviewed by: Megan Watson git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/STABLE/branches/3.5.3-Release-Branch@9038 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
0 deletions
sql/mysql/upgrade/3.5.3/add_autoinc-5.sql
| 1 | +update plugins set id = id + 1; | |
| 2 | +update upgrades set id = id + 1; | |
| 1 | 3 | alter table active_sessions change `id` `id` int (11) NOT NULL AUTO_INCREMENT; |
| 2 | 4 | alter table archive_restoration_request change `id` `id` int (11) NOT NULL AUTO_INCREMENT; |
| 3 | 5 | alter table archiving_settings change `id` `id` int (11) NOT NULL AUTO_INCREMENT; | ... | ... |