[ Index ] |
PHP Cross Reference of MediaWiki-1.24.0 |
[Summary view] [Print] [Text view]
1 -- Protected titles - nonexistent pages that have been protected 2 CREATE TABLE /*$wgDBprefix*/protected_titles ( 3 pt_namespace int NOT NULL, 4 pt_title varchar(255) binary NOT NULL, 5 pt_user int unsigned NOT NULL, 6 pt_reason tinyblob, 7 pt_timestamp binary(14) NOT NULL, 8 pt_expiry varbinary(14) NOT NULL default '', 9 pt_create_perm varbinary(60) NOT NULL, 10 PRIMARY KEY (pt_namespace,pt_title), 11 KEY pt_timestamp (pt_timestamp) 12 ) /*$wgDBTableOptions*/;
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 14:03:12 2014 | Cross-referenced by PHPXref 0.7.1 |