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 "Improve sorting on SpecialWanted*-Pages"
[mediawiki.git]
/
maintenance
/
archives
/
patch-page_props.sql
blob
15a3558144fbff15b86a5966cb437565ecf9f995
1
-- Name/value pairs indexed by page_id
2
CREATE TABLE /*$wgDBprefix*/page_props (
3
pp_page int NOT NULL,
4
pp_propname varbinary(60) NOT NULL,
5
pp_value blob NOT NULL,
6
7
PRIMARY KEY (pp_page,pp_propname)
8
) /*$wgDBTableOptions*/;
9