mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
13 lines
283 B
SQL
13 lines
283 B
SQL
--
|
|
-- Track links to external URLs
|
|
--
|
|
CREATE TABLE /*$wgDBprefix*/externallinks (
|
|
el_from int(8) unsigned NOT NULL default '0',
|
|
el_to blob NOT NULL,
|
|
el_index blob NOT NULL,
|
|
|
|
KEY (el_from, el_to(40)),
|
|
KEY (el_to(60), el_from),
|
|
KEY (el_index(60))
|
|
) /*$wgDBTableOptions*/;
|
|
|