Commit e58cd2695caa2d9dd551a2e6d20a7b010c6ccc55
1 parent
b318ba77
KTC-717 Moved the 2nd auto-increment upgrade function above the 3.5.3 sql upgrades.
"Failure during the DB upgrade wizard on the 337OSS>>346OSS>>3.6.1CE as well as 346CE>>361CE upgrade." Fixed. Committed by: Megan Watson
Showing
1 changed file
with
2 additions
and
2 deletions
lib/upgrades/UpgradeFunctions.inc.php
| ... | ... | @@ -120,12 +120,12 @@ class UpgradeFunctions { |
| 120 | 120 | 'dropIndexes'=>4, |
| 121 | 121 | 'createPrimaryKeys'=>5, |
| 122 | 122 | 'createForeignKeys'=>6, |
| 123 | - 'createIndexes'=>7 | |
| 123 | + 'createIndexes'=>7, | |
| 124 | + 'addAutoIncrementToTables2'=>-1 | |
| 124 | 125 | ); |
| 125 | 126 | |
| 126 | 127 | var $priority = array( |
| 127 | 128 | 'addAutoIncrementToTables'=>1, |
| 128 | - 'addAutoIncrementToTables2'=>-1, | |
| 129 | 129 | 'removeOldFilesAndFolders354a'=>1 |
| 130 | 130 | ); |
| 131 | 131 | ... | ... |