* Added __HIDDENCAT__ feature, to hide categories from the box at the bottom of the...
[mediawiki.git] / maintenance / archives / patch-page_props.sql
blob774e0e275ea85567e7e3512c3f7ac6c4a5f0c192
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,
7   PRIMARY KEY (pp_page,pp_propname)
8 );