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
Finally removing the deprecated and unused functions User::isSysop, User::isBureaucra...
[mediawiki.git]
/
maintenance
/
archives
/
patch-linkscc.sql
blob
91d4da56bc84d7363241056e3d16f1042253fcee
1
--
2
-- linkscc table used to cache link lists in easier to digest form
3
-- November 2003
4
--
5
-- Format later updated.
6
--
7
8
CREATE TABLE /*$wgDBprefix*/linkscc (
9
lcc_pageid INT UNSIGNED NOT NULL UNIQUE KEY,
10
lcc_cacheobj MEDIUMBLOB NOT NULL
11
12
) TYPE=InnoDB;