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
Don't use deprecated User::checkPassword() in TestUser
[mediawiki.git]
/
maintenance
/
postgres
/
archives
/
patch-l10n_cache.sql
blob
9b39b1b7a5492e2ea6f71fa68bbad77228cd5bcf
1
CREATE TABLE l10n_cache (
2
lc_lang TEXT NOT NULL,
3
lc_key TEXT NOT NULL,
4
lc_value TEXT NOT NULL
5
);
6
CREATE INDEX l10n_cache_lc_lang_key ON l10n_cache (lc_lang, lc_key);
7
8