Index: trunk/phase3/maintenance/sqlite/archives/patch-kill-iwl_pft.sql |
— | — | @@ -3,5 +3,5 @@ |
4 | 4 | -- installs if they ran update.php between it being added and being renamed |
5 | 5 | -- |
6 | 6 | |
7 | | -DROP INDEX /*i*/iwl_prefix_from_title ON /*_*/iwlinks; |
| 7 | +DROP INDEX /*i*/iwl_prefix_from_title; |
8 | 8 | |
Index: trunk/phase3/maintenance/sqlite/archives/patch-rename-iwl_prefix.sql |
— | — | @@ -1,5 +1,5 @@ |
2 | 2 | -- |
3 | 3 | -- Recreates the iwl_prefix for the iwlinks table |
4 | 4 | -- |
5 | | -DROP INDEX /*i*/iwl_prefix; |
| 5 | +DROP INDEX IF EXISTS /*i*/iwl_prefix; |
6 | 6 | CREATE INDEX /*i*/iwl_prefix_from_title ON /*_*/iwlinks (iwl_prefix, iwl_from, iwl_title); |
\ No newline at end of file |
Index: trunk/phase3/maintenance/sqlite/archives/patch-kill-iwl_prefix.sql |
— | — | @@ -3,5 +3,5 @@ |
4 | 4 | -- installs if they ran update.php between it being added and being renamed |
5 | 5 | -- |
6 | 6 | |
7 | | -DROP INDEX /*i*/iwl_prefix ON /*_*/iwlinks; |
| 7 | +DROP INDEX /*i*/iwl_prefix; |
8 | 8 | |