* Added __HIDDENCAT__ feature, to hide categories from the box at the bottom of the...
[lhc/web/wiklou.git] / maintenance / archives / patch-page_props.sql
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 );
9