Commit 24f14507ba98fb96fda7fe6637db8606a79324f2
1 parent
e3e206dc
Merged in from DEV 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/trunk@9037 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 | alter table active_sessions change `id` `id` int (11) NOT NULL AUTO_INCREMENT; | 3 | alter table active_sessions change `id` `id` int (11) NOT NULL AUTO_INCREMENT; |
| 2 | alter table archive_restoration_request change `id` `id` int (11) NOT NULL AUTO_INCREMENT; | 4 | alter table archive_restoration_request change `id` `id` int (11) NOT NULL AUTO_INCREMENT; |
| 3 | alter table archiving_settings change `id` `id` int (11) NOT NULL AUTO_INCREMENT; | 5 | alter table archiving_settings change `id` `id` int (11) NOT NULL AUTO_INCREMENT; |