repo.or.cz
/
mediawiki.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Merge "Added release notes for 'ContentHandler::runLegacyHooks' removal"
[mediawiki.git]
/
maintenance
/
archives
/
patch-externallinks.sql
blob
fc5017db893a04f55cc34b14e8813d0313248b03
1
--
2
-- Track links to external URLs
3
--
4
CREATE TABLE /*$wgDBprefix*/externallinks (
5
el_from int(8) unsigned NOT NULL default '0',
6
el_to blob NOT NULL,
7
el_index blob NOT NULL,
8
9
KEY (el_from, el_to(40)),
10
KEY (el_to(60), el_from),
11
KEY (el_index(60))
12
) /*$wgDBTableOptions*/;
13