Skip to content

Commit

Permalink
Don't restrict rl_externallink index to 50 (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
paladox authored Dec 6, 2024
1 parent cb1d737 commit 3af3f51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/rottenlinks.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ CREATE TABLE /*_*/rottenlinks (
`rl_respcode` INT UNSIGNED NOT NULL
)/*$wgDBTableOptions*/;

CREATE INDEX /*i*/rl_externallink ON /*_*/rottenlinks (rl_externallink(50));
CREATE INDEX /*i*/rl_externallink ON /*_*/rottenlinks (rl_externallink);
CREATE INDEX /*i*/rl_respcode ON /*_*/rottenlinks (rl_respcode);

COMMIT;

0 comments on commit 3af3f51

Please sign in to comment.