Fixed some @params documentation (includes/WikiPage.php)
[mediawiki.git] / maintenance / tables.sql
blobca610fc36bb293940e989f385fdff612e0ccb5f4
1 -- SQL to create the initial tables for the MediaWiki database.
2 -- This is read and executed by the install script; you should
3 -- not have to run it by itself unless doing a manual install.
5 -- This is a shared schema file used for both MySQL and SQLite installs.
7 --
8 -- General notes:
9 --
10 -- If possible, create tables as InnoDB to benefit from the
11 -- superior resiliency against crashes and ability to read
12 -- during writes (and write during reads!)
14 -- Only the 'searchindex' table requires MyISAM due to the
15 -- requirement for fulltext index support, which is missing
16 -- from InnoDB.
19 -- The MySQL table backend for MediaWiki currently uses
20 -- 14-character BINARY or VARBINARY fields to store timestamps.
21 -- The format is YYYYMMDDHHMMSS, which is derived from the
22 -- text format of MySQL's TIMESTAMP fields.
24 -- Historically TIMESTAMP fields were used, but abandoned
25 -- in early 2002 after a lot of trouble with the fields
26 -- auto-updating.
28 -- The Postgres backend uses TIMESTAMPTZ fields for timestamps,
29 -- and we will migrate the MySQL definitions at some point as
30 -- well.
33 -- The /*_*/ comments in this and other files are
34 -- replaced with the defined table prefix by the installer
35 -- and updater scripts. If you are installing or running
36 -- updates manually, you will need to manually insert the
37 -- table prefix if any when running these scripts.
42 -- The user table contains basic account information,
43 -- authentication keys, etc.
45 -- Some multi-wiki sites may share a single central user table
46 -- between separate wikis using the $wgSharedDB setting.
48 -- Note that when a external authentication plugin is used,
49 -- user table entries still need to be created to store
50 -- preferences and to key tracking information in the other
51 -- tables.
53 CREATE TABLE /*_*/user (
54   user_id int unsigned NOT NULL PRIMARY KEY AUTO_INCREMENT,
56   -- Usernames must be unique, must not be in the form of
57   -- an IP address. _Shouldn't_ allow slashes or case
58   -- conflicts. Spaces are allowed, and are _not_ converted
59   -- to underscores like titles. See the User::newFromName() for
60   -- the specific tests that usernames have to pass.
61   user_name varchar(255) binary NOT NULL default '',
63   -- Optional 'real name' to be displayed in credit listings
64   user_real_name varchar(255) binary NOT NULL default '',
66   -- Password hashes, see User::crypt() and User::comparePasswords()
67   -- in User.php for the algorithm
68   user_password tinyblob NOT NULL,
70   -- When using 'mail me a new password', a random
71   -- password is generated and the hash stored here.
72   -- The previous password is left in place until
73   -- someone actually logs in with the new password,
74   -- at which point the hash is moved to user_password
75   -- and the old password is invalidated.
76   user_newpassword tinyblob NOT NULL,
78   -- Timestamp of the last time when a new password was
79   -- sent, for throttling and expiring purposes
80   -- Emailed passwords will expire $wgNewPasswordExpiry
81   -- (a week) after being set. If user_newpass_time is NULL
82   -- (eg. created by mail) it doesn't expire.
83   user_newpass_time binary(14),
85   -- Note: email should be restricted, not public info.
86   -- Same with passwords.
87   user_email tinytext NOT NULL,
89   -- If the browser sends an If-Modified-Since header, a 304 response is
90   -- suppressed if the value in this field for the current user is later than
91   -- the value in the IMS header. That is, this field is an invalidation timestamp
92   -- for the browser cache of logged-in users. Among other things, it is used
93   -- to prevent pages generated for a previously logged in user from being
94   -- displayed after a session expiry followed by a fresh login.
95   user_touched binary(14) NOT NULL default '',
97   -- A pseudorandomly generated value that is stored in
98   -- a cookie when the "remember password" feature is
99   -- used (previously, a hash of the password was used, but
100   -- this was vulnerable to cookie-stealing attacks)
101   user_token binary(32) NOT NULL default '',
103   -- Initially NULL; when a user's e-mail address has been
104   -- validated by returning with a mailed token, this is
105   -- set to the current timestamp.
106   user_email_authenticated binary(14),
108   -- Randomly generated token created when the e-mail address
109   -- is set and a confirmation test mail sent.
110   user_email_token binary(32),
112   -- Expiration date for the user_email_token
113   user_email_token_expires binary(14),
115   -- Timestamp of account registration.
116   -- Accounts predating this schema addition may contain NULL.
117   user_registration binary(14),
119   -- Count of edits and edit-like actions.
120   --
121   -- *NOT* intended to be an accurate copy of COUNT(*) WHERE rev_user=user_id
122   -- May contain NULL for old accounts if batch-update scripts haven't been
123   -- run, as well as listing deleted edits and other myriad ways it could be
124   -- out of sync.
125   --
126   -- Meant primarily for heuristic checks to give an impression of whether
127   -- the account has been used much.
128   --
129   user_editcount int,
131   -- Expiration date for user password. Use $user->expirePassword()
132   -- to force a password reset.
133   user_password_expires varbinary(14) DEFAULT NULL
135 ) /*$wgDBTableOptions*/;
137 CREATE UNIQUE INDEX /*i*/user_name ON /*_*/user (user_name);
138 CREATE INDEX /*i*/user_email_token ON /*_*/user (user_email_token);
139 CREATE INDEX /*i*/user_email ON /*_*/user (user_email(50));
143 -- User permissions have been broken out to a separate table;
144 -- this allows sites with a shared user table to have different
145 -- permissions assigned to a user in each project.
147 -- This table replaces the old user_rights field which used a
148 -- comma-separated blob.
150 CREATE TABLE /*_*/user_groups (
151   -- Key to user_id
152   ug_user int unsigned NOT NULL default 0,
154   -- Group names are short symbolic string keys.
155   -- The set of group names is open-ended, though in practice
156   -- only some predefined ones are likely to be used.
157   --
158   -- At runtime $wgGroupPermissions will associate group keys
159   -- with particular permissions. A user will have the combined
160   -- permissions of any group they're explicitly in, plus
161   -- the implicit '*' and 'user' groups.
162   ug_group varbinary(255) NOT NULL default ''
163 ) /*$wgDBTableOptions*/;
165 CREATE UNIQUE INDEX /*i*/ug_user_group ON /*_*/user_groups (ug_user,ug_group);
166 CREATE INDEX /*i*/ug_group ON /*_*/user_groups (ug_group);
168 -- Stores the groups the user has once belonged to.
169 -- The user may still belong to these groups (check user_groups).
170 -- Users are not autopromoted to groups from which they were removed.
171 CREATE TABLE /*_*/user_former_groups (
172   -- Key to user_id
173   ufg_user int unsigned NOT NULL default 0,
174   ufg_group varbinary(255) NOT NULL default ''
175 ) /*$wgDBTableOptions*/;
177 CREATE UNIQUE INDEX /*i*/ufg_user_group ON /*_*/user_former_groups (ufg_user,ufg_group);
180 -- Stores notifications of user talk page changes, for the display
181 -- of the "you have new messages" box
183 CREATE TABLE /*_*/user_newtalk (
184   -- Key to user.user_id
185   user_id int NOT NULL default 0,
186   -- If the user is an anonymous user their IP address is stored here
187   -- since the user_id of 0 is ambiguous
188   user_ip varbinary(40) NOT NULL default '',
189   -- The highest timestamp of revisions of the talk page viewed
190   -- by this user
191   user_last_timestamp varbinary(14) NULL default NULL
192 ) /*$wgDBTableOptions*/;
194 -- Indexes renamed for SQLite in 1.14
195 CREATE INDEX /*i*/un_user_id ON /*_*/user_newtalk (user_id);
196 CREATE INDEX /*i*/un_user_ip ON /*_*/user_newtalk (user_ip);
200 -- User preferences and perhaps other fun stuff. :)
201 -- Replaces the old user.user_options blob, with a couple nice properties:
203 -- 1) We only store non-default settings, so changes to the defauls
204 --    are now reflected for everybody, not just new accounts.
205 -- 2) We can more easily do bulk lookups, statistics, or modifications of
206 --    saved options since it's a sane table structure.
208 CREATE TABLE /*_*/user_properties (
209   -- Foreign key to user.user_id
210   up_user int NOT NULL,
212   -- Name of the option being saved. This is indexed for bulk lookup.
213   up_property varbinary(255) NOT NULL,
215   -- Property value as a string.
216   up_value blob
217 ) /*$wgDBTableOptions*/;
219 CREATE UNIQUE INDEX /*i*/user_properties_user_property ON /*_*/user_properties (up_user,up_property);
220 CREATE INDEX /*i*/user_properties_property ON /*_*/user_properties (up_property);
223 -- Core of the wiki: each page has an entry here which identifies
224 -- it by title and contains some essential metadata.
226 CREATE TABLE /*_*/page (
227   -- Unique identifier number. The page_id will be preserved across
228   -- edits and rename operations, but not deletions and recreations.
229   page_id int unsigned NOT NULL PRIMARY KEY AUTO_INCREMENT,
231   -- A page name is broken into a namespace and a title.
232   -- The namespace keys are UI-language-independent constants,
233   -- defined in includes/Defines.php
234   page_namespace int NOT NULL,
236   -- The rest of the title, as text.
237   -- Spaces are transformed into underscores in title storage.
238   page_title varchar(255) binary NOT NULL,
240   -- Comma-separated set of permission keys indicating who
241   -- can move or edit the page.
242   page_restrictions tinyblob NOT NULL,
244   -- Number of times this page has been viewed.
245   page_counter bigint unsigned NOT NULL default 0,
247   -- 1 indicates the article is a redirect.
248   page_is_redirect tinyint unsigned NOT NULL default 0,
250   -- 1 indicates this is a new entry, with only one edit.
251   -- Not all pages with one edit are new pages.
252   page_is_new tinyint unsigned NOT NULL default 0,
254   -- Random value between 0 and 1, used for Special:Randompage
255   page_random real unsigned NOT NULL,
257   -- This timestamp is updated whenever the page changes in
258   -- a way requiring it to be re-rendered, invalidating caches.
259   -- Aside from editing this includes permission changes,
260   -- creation or deletion of linked pages, and alteration
261   -- of contained templates.
262   page_touched binary(14) NOT NULL default '',
264   -- This timestamp is updated whenever a page is re-parsed and
265   -- it has all the link tracking tables updated for it. This is
266   -- useful for de-duplicating expensive backlink update jobs.
267   page_links_updated varbinary(14) NULL default NULL,
269   -- Handy key to revision.rev_id of the current revision.
270   -- This may be 0 during page creation, but that shouldn't
271   -- happen outside of a transaction... hopefully.
272   page_latest int unsigned NOT NULL,
274   -- Uncompressed length in bytes of the page's current source text.
275   page_len int unsigned NOT NULL,
277   -- content model, see CONTENT_MODEL_XXX constants
278   page_content_model varbinary(32) DEFAULT NULL
279 ) /*$wgDBTableOptions*/;
281 CREATE UNIQUE INDEX /*i*/name_title ON /*_*/page (page_namespace,page_title);
282 CREATE INDEX /*i*/page_random ON /*_*/page (page_random);
283 CREATE INDEX /*i*/page_len ON /*_*/page (page_len);
284 CREATE INDEX /*i*/page_redirect_namespace_len ON /*_*/page (page_is_redirect, page_namespace, page_len);
287 -- Every edit of a page creates also a revision row.
288 -- This stores metadata about the revision, and a reference
289 -- to the text storage backend.
291 CREATE TABLE /*_*/revision (
292   -- Unique ID to identify each revision
293   rev_id int unsigned NOT NULL PRIMARY KEY AUTO_INCREMENT,
295   -- Key to page_id. This should _never_ be invalid.
296   rev_page int unsigned NOT NULL,
298   -- Key to text.old_id, where the actual bulk text is stored.
299   -- It's possible for multiple revisions to use the same text,
300   -- for instance revisions where only metadata is altered
301   -- or a rollback to a previous version.
302   rev_text_id int unsigned NOT NULL,
304   -- Text comment summarizing the change.
305   -- This text is shown in the history and other changes lists,
306   -- rendered in a subset of wiki markup by Linker::formatComment()
307   rev_comment tinyblob NOT NULL,
309   -- Key to user.user_id of the user who made this edit.
310   -- Stores 0 for anonymous edits and for some mass imports.
311   rev_user int unsigned NOT NULL default 0,
313   -- Text username or IP address of the editor.
314   rev_user_text varchar(255) binary NOT NULL default '',
316   -- Timestamp of when revision was created
317   rev_timestamp binary(14) NOT NULL default '',
319   -- Records whether the user marked the 'minor edit' checkbox.
320   -- Many automated edits are marked as minor.
321   rev_minor_edit tinyint unsigned NOT NULL default 0,
323   -- Restrictions on who can access this revision
324   rev_deleted tinyint unsigned NOT NULL default 0,
326   -- Length of this revision in bytes
327   rev_len int unsigned,
329   -- Key to revision.rev_id
330   -- This field is used to add support for a tree structure (The Adjacency List Model)
331   rev_parent_id int unsigned default NULL,
333   -- SHA-1 text content hash in base-36
334   rev_sha1 varbinary(32) NOT NULL default '',
336   -- content model, see CONTENT_MODEL_XXX constants
337   rev_content_model varbinary(32) DEFAULT NULL,
339   -- content format, see CONTENT_FORMAT_XXX constants
340   rev_content_format varbinary(64) DEFAULT NULL
342 ) /*$wgDBTableOptions*/ MAX_ROWS=10000000 AVG_ROW_LENGTH=1024;
343 -- In case tables are created as MyISAM, use row hints for MySQL <5.0 to avoid 4GB limit
345 CREATE UNIQUE INDEX /*i*/rev_page_id ON /*_*/revision (rev_page, rev_id);
346 CREATE INDEX /*i*/rev_timestamp ON /*_*/revision (rev_timestamp);
347 CREATE INDEX /*i*/page_timestamp ON /*_*/revision (rev_page,rev_timestamp);
348 CREATE INDEX /*i*/user_timestamp ON /*_*/revision (rev_user,rev_timestamp);
349 CREATE INDEX /*i*/usertext_timestamp ON /*_*/revision (rev_user_text,rev_timestamp);
350 CREATE INDEX /*i*/page_user_timestamp ON /*_*/revision (rev_page,rev_user,rev_timestamp);
353 -- Holds text of individual page revisions.
355 -- Field names are a holdover from the 'old' revisions table in
356 -- MediaWiki 1.4 and earlier: an upgrade will transform that
357 -- table into the 'text' table to minimize unnecessary churning
358 -- and downtime. If upgrading, the other fields will be left unused.
360 CREATE TABLE /*_*/text (
361   -- Unique text storage key number.
362   -- Note that the 'oldid' parameter used in URLs does *not*
363   -- refer to this number anymore, but to rev_id.
364   --
365   -- revision.rev_text_id is a key to this column
366   old_id int unsigned NOT NULL PRIMARY KEY AUTO_INCREMENT,
368   -- Depending on the contents of the old_flags field, the text
369   -- may be convenient plain text, or it may be funkily encoded.
370   old_text mediumblob NOT NULL,
372   -- Comma-separated list of flags:
373   -- gzip: text is compressed with PHP's gzdeflate() function.
374   -- utf8: text was stored as UTF-8.
375   --       If $wgLegacyEncoding option is on, rows *without* this flag
376   --       will be converted to UTF-8 transparently at load time.
377   -- object: text field contained a serialized PHP object.
378   --         The object either contains multiple versions compressed
379   --         together to achieve a better compression ratio, or it refers
380   --         to another row where the text can be found.
381   old_flags tinyblob NOT NULL
382 ) /*$wgDBTableOptions*/ MAX_ROWS=10000000 AVG_ROW_LENGTH=10240;
383 -- In case tables are created as MyISAM, use row hints for MySQL <5.0 to avoid 4GB limit
387 -- Holding area for deleted articles, which may be viewed
388 -- or restored by admins through the Special:Undelete interface.
389 -- The fields generally correspond to the page, revision, and text
390 -- fields, with several caveats.
392 CREATE TABLE /*_*/archive (
393   -- Primary key
394   ar_id int unsigned NOT NULL PRIMARY KEY AUTO_INCREMENT,
395   ar_namespace int NOT NULL default 0,
396   ar_title varchar(255) binary NOT NULL default '',
398   -- Newly deleted pages will not store text in this table,
399   -- but will reference the separately existing text rows.
400   -- This field is retained for backwards compatibility,
401   -- so old archived pages will remain accessible after
402   -- upgrading from 1.4 to 1.5.
403   -- Text may be gzipped or otherwise funky.
404   ar_text mediumblob NOT NULL,
406   -- Basic revision stuff...
407   ar_comment tinyblob NOT NULL,
408   ar_user int unsigned NOT NULL default 0,
409   ar_user_text varchar(255) binary NOT NULL,
410   ar_timestamp binary(14) NOT NULL default '',
411   ar_minor_edit tinyint NOT NULL default 0,
413   -- See ar_text note.
414   ar_flags tinyblob NOT NULL,
416   -- When revisions are deleted, their unique rev_id is stored
417   -- here so it can be retained after undeletion. This is necessary
418   -- to retain permalinks to given revisions after accidental delete
419   -- cycles or messy operations like history merges.
420   --
421   -- Old entries from 1.4 will be NULL here, and a new rev_id will
422   -- be created on undeletion for those revisions.
423   ar_rev_id int unsigned,
425   -- For newly deleted revisions, this is the text.old_id key to the
426   -- actual stored text. To avoid breaking the block-compression scheme
427   -- and otherwise making storage changes harder, the actual text is
428   -- *not* deleted from the text table, merely hidden by removal of the
429   -- page and revision entries.
430   --
431   -- Old entries deleted under 1.2-1.4 will have NULL here, and their
432   -- ar_text and ar_flags fields will be used to create a new text
433   -- row upon undeletion.
434   ar_text_id int unsigned,
436   -- rev_deleted for archives
437   ar_deleted tinyint unsigned NOT NULL default 0,
439   -- Length of this revision in bytes
440   ar_len int unsigned,
442   -- Reference to page_id. Useful for sysadmin fixing of large pages
443   -- merged together in the archives, or for cleanly restoring a page
444   -- at its original ID number if possible.
445   --
446   -- Will be NULL for pages deleted prior to 1.11.
447   ar_page_id int unsigned,
449   -- Original previous revision
450   ar_parent_id int unsigned default NULL,
452   -- SHA-1 text content hash in base-36
453   ar_sha1 varbinary(32) NOT NULL default '',
455   -- content model, see CONTENT_MODEL_XXX constants
456   ar_content_model varbinary(32) DEFAULT NULL,
458   -- content format, see CONTENT_FORMAT_XXX constants
459   ar_content_format varbinary(64) DEFAULT NULL
460 ) /*$wgDBTableOptions*/;
462 CREATE INDEX /*i*/name_title_timestamp ON /*_*/archive (ar_namespace,ar_title,ar_timestamp);
463 CREATE INDEX /*i*/ar_usertext_timestamp ON /*_*/archive (ar_user_text,ar_timestamp);
464 CREATE INDEX /*i*/ar_revid ON /*_*/archive (ar_rev_id);
468 -- Track page-to-page hyperlinks within the wiki.
470 CREATE TABLE /*_*/pagelinks (
471   -- Key to the page_id of the page containing the link.
472   pl_from int unsigned NOT NULL default 0,
474   -- Key to page_namespace/page_title of the target page.
475   -- The target page may or may not exist, and due to renames
476   -- and deletions may refer to different page records as time
477   -- goes by.
478   pl_namespace int NOT NULL default 0,
479   pl_title varchar(255) binary NOT NULL default ''
480 ) /*$wgDBTableOptions*/;
482 CREATE UNIQUE INDEX /*i*/pl_from ON /*_*/pagelinks (pl_from,pl_namespace,pl_title);
483 CREATE UNIQUE INDEX /*i*/pl_namespace ON /*_*/pagelinks (pl_namespace,pl_title,pl_from);
487 -- Track template inclusions.
489 CREATE TABLE /*_*/templatelinks (
490   -- Key to the page_id of the page containing the link.
491   tl_from int unsigned NOT NULL default 0,
493   -- Key to page_namespace/page_title of the target page.
494   -- The target page may or may not exist, and due to renames
495   -- and deletions may refer to different page records as time
496   -- goes by.
497   tl_namespace int NOT NULL default 0,
498   tl_title varchar(255) binary NOT NULL default ''
499 ) /*$wgDBTableOptions*/;
501 CREATE UNIQUE INDEX /*i*/tl_from ON /*_*/templatelinks (tl_from,tl_namespace,tl_title);
502 CREATE UNIQUE INDEX /*i*/tl_namespace ON /*_*/templatelinks (tl_namespace,tl_title,tl_from);
506 -- Track links to images *used inline*
507 -- We don't distinguish live from broken links here, so
508 -- they do not need to be changed on upload/removal.
510 CREATE TABLE /*_*/imagelinks (
511   -- Key to page_id of the page containing the image / media link.
512   il_from int unsigned NOT NULL default 0,
514   -- Filename of target image.
515   -- This is also the page_title of the file's description page;
516   -- all such pages are in namespace 6 (NS_FILE).
517   il_to varchar(255) binary NOT NULL default ''
518 ) /*$wgDBTableOptions*/;
520 CREATE UNIQUE INDEX /*i*/il_from ON /*_*/imagelinks (il_from,il_to);
521 CREATE UNIQUE INDEX /*i*/il_to ON /*_*/imagelinks (il_to,il_from);
525 -- Track category inclusions *used inline*
526 -- This tracks a single level of category membership
528 CREATE TABLE /*_*/categorylinks (
529   -- Key to page_id of the page defined as a category member.
530   cl_from int unsigned NOT NULL default 0,
532   -- Name of the category.
533   -- This is also the page_title of the category's description page;
534   -- all such pages are in namespace 14 (NS_CATEGORY).
535   cl_to varchar(255) binary NOT NULL default '',
537   -- A binary string obtained by applying a sortkey generation algorithm
538   -- (Collation::getSortKey()) to page_title, or cl_sortkey_prefix . "\n"
539   -- . page_title if cl_sortkey_prefix is nonempty.
540   cl_sortkey varbinary(230) NOT NULL default '',
542   -- A prefix for the raw sortkey manually specified by the user, either via
543   -- [[Category:Foo|prefix]] or {{defaultsort:prefix}}.  If nonempty, it's
544   -- concatenated with a line break followed by the page title before the sortkey
545   -- conversion algorithm is run.  We store this so that we can update
546   -- collations without reparsing all pages.
547   -- Note: If you change the length of this field, you also need to change
548   -- code in LinksUpdate.php. See bug 25254.
549   cl_sortkey_prefix varchar(255) binary NOT NULL default '',
551   -- This isn't really used at present. Provided for an optional
552   -- sorting method by approximate addition time.
553   cl_timestamp timestamp NOT NULL,
555   -- Stores $wgCategoryCollation at the time cl_sortkey was generated.  This
556   -- can be used to install new collation versions, tracking which rows are not
557   -- yet updated.  '' means no collation, this is a legacy row that needs to be
558   -- updated by updateCollation.php.  In the future, it might be possible to
559   -- specify different collations per category.
560   cl_collation varbinary(32) NOT NULL default '',
562   -- Stores whether cl_from is a category, file, or other page, so we can
563   -- paginate the three categories separately.  This never has to be updated
564   -- after the page is created, since none of these page types can be moved to
565   -- any other.
566   cl_type ENUM('page', 'subcat', 'file') NOT NULL default 'page'
567 ) /*$wgDBTableOptions*/;
569 CREATE UNIQUE INDEX /*i*/cl_from ON /*_*/categorylinks (cl_from,cl_to);
571 -- We always sort within a given category, and within a given type.  FIXME:
572 -- Formerly this index didn't cover cl_type (since that didn't exist), so old
573 -- callers won't be using an index: fix this?
574 CREATE INDEX /*i*/cl_sortkey ON /*_*/categorylinks (cl_to,cl_type,cl_sortkey,cl_from);
576 -- Used by the API (and some extensions)
577 CREATE INDEX /*i*/cl_timestamp ON /*_*/categorylinks (cl_to,cl_timestamp);
579 -- FIXME: Not used, delete this
580 CREATE INDEX /*i*/cl_collation ON /*_*/categorylinks (cl_collation);
583 -- Track all existing categories.  Something is a category if 1) it has an en-
584 -- try somewhere in categorylinks, or 2) it once did.  Categories might not
585 -- have corresponding pages, so they need to be tracked separately.
587 CREATE TABLE /*_*/category (
588   -- Primary key
589   cat_id int unsigned NOT NULL PRIMARY KEY AUTO_INCREMENT,
591   -- Name of the category, in the same form as page_title (with underscores).
592   -- If there is a category page corresponding to this category, by definition,
593   -- it has this name (in the Category namespace).
594   cat_title varchar(255) binary NOT NULL,
596   -- The numbers of member pages (including categories and media), subcatego-
597   -- ries, and Image: namespace members, respectively.  These are signed to
598   -- make underflow more obvious.  We make the first number include the second
599   -- two for better sorting: subtracting for display is easy, adding for order-
600   -- ing is not.
601   cat_pages int signed NOT NULL default 0,
602   cat_subcats int signed NOT NULL default 0,
603   cat_files int signed NOT NULL default 0
604 ) /*$wgDBTableOptions*/;
606 CREATE UNIQUE INDEX /*i*/cat_title ON /*_*/category (cat_title);
608 -- For Special:Mostlinkedcategories
609 CREATE INDEX /*i*/cat_pages ON /*_*/category (cat_pages);
613 -- Track links to external URLs
615 CREATE TABLE /*_*/externallinks (
616   -- Primary key
617   el_id int unsigned NOT NULL PRIMARY KEY AUTO_INCREMENT,
619   -- page_id of the referring page
620   el_from int unsigned NOT NULL default 0,
622   -- The URL
623   el_to blob NOT NULL,
625   -- In the case of HTTP URLs, this is the URL with any username or password
626   -- removed, and with the labels in the hostname reversed and converted to
627   -- lower case. An extra dot is added to allow for matching of either
628   -- example.com or *.example.com in a single scan.
629   -- Example:
630   --      http://user:password@sub.example.com/page.html
631   --   becomes
632   --      http://com.example.sub./page.html
633   -- which allows for fast searching for all pages under example.com with the
634   -- clause:
635   --      WHERE el_index LIKE 'http://com.example.%'
636   el_index blob NOT NULL
637 ) /*$wgDBTableOptions*/;
639 CREATE INDEX /*i*/el_from ON /*_*/externallinks (el_from, el_to(40));
640 CREATE INDEX /*i*/el_to ON /*_*/externallinks (el_to(60), el_from);
641 CREATE INDEX /*i*/el_index ON /*_*/externallinks (el_index(60));
644 -- Track interlanguage links
646 CREATE TABLE /*_*/langlinks (
647   -- page_id of the referring page
648   ll_from int unsigned NOT NULL default 0,
650   -- Language code of the target
651   ll_lang varbinary(20) NOT NULL default '',
653   -- Title of the target, including namespace
654   ll_title varchar(255) binary NOT NULL default ''
655 ) /*$wgDBTableOptions*/;
657 CREATE UNIQUE INDEX /*i*/ll_from ON /*_*/langlinks (ll_from, ll_lang);
658 CREATE INDEX /*i*/ll_lang ON /*_*/langlinks (ll_lang, ll_title);
662 -- Track inline interwiki links
664 CREATE TABLE /*_*/iwlinks (
665   -- page_id of the referring page
666   iwl_from int unsigned NOT NULL default 0,
668   -- Interwiki prefix code of the target
669   iwl_prefix varbinary(20) NOT NULL default '',
671   -- Title of the target, including namespace
672   iwl_title varchar(255) binary NOT NULL default ''
673 ) /*$wgDBTableOptions*/;
675 CREATE UNIQUE INDEX /*i*/iwl_from ON /*_*/iwlinks (iwl_from, iwl_prefix, iwl_title);
676 CREATE INDEX /*i*/iwl_prefix_title_from ON /*_*/iwlinks (iwl_prefix, iwl_title, iwl_from);
677 CREATE INDEX /*i*/iwl_prefix_from_title ON /*_*/iwlinks (iwl_prefix, iwl_from, iwl_title);
681 -- Contains a single row with some aggregate info
682 -- on the state of the site.
684 CREATE TABLE /*_*/site_stats (
685   -- The single row should contain 1 here.
686   ss_row_id int unsigned NOT NULL,
688   -- Total number of page views, if hit counters are enabled.
689   ss_total_views bigint unsigned default 0,
691   -- Total number of edits performed.
692   ss_total_edits bigint unsigned default 0,
694   -- An approximate count of pages matching the following criteria:
695   -- * in namespace 0
696   -- * not a redirect
697   -- * contains the text '[['
698   -- See Article::isCountable() in includes/Article.php
699   ss_good_articles bigint unsigned default 0,
701   -- Total pages, theoretically equal to SELECT COUNT(*) FROM page; except faster
702   ss_total_pages bigint default '-1',
704   -- Number of users, theoretically equal to SELECT COUNT(*) FROM user;
705   ss_users bigint default '-1',
707   -- Number of users that still edit
708   ss_active_users bigint default '-1',
710   -- Number of images, equivalent to SELECT COUNT(*) FROM image
711   ss_images int default 0
712 ) /*$wgDBTableOptions*/;
714 -- Pointless index to assuage developer superstitions
715 CREATE UNIQUE INDEX /*i*/ss_row_id ON /*_*/site_stats (ss_row_id);
719 -- Stores an ID for every time any article is visited;
720 -- depending on $wgHitcounterUpdateFreq, it is
721 -- periodically cleared and the page_counter column
722 -- in the page table updated for all the articles
723 -- that have been visited.)
725 CREATE TABLE /*_*/hitcounter (
726   hc_id int unsigned NOT NULL
727 ) ENGINE=HEAP MAX_ROWS=25000;
731 -- The internet is full of jerks, alas. Sometimes it's handy
732 -- to block a vandal or troll account.
734 CREATE TABLE /*_*/ipblocks (
735   -- Primary key, introduced for privacy.
736   ipb_id int NOT NULL PRIMARY KEY AUTO_INCREMENT,
738   -- Blocked IP address in dotted-quad form or user name.
739   ipb_address tinyblob NOT NULL,
741   -- Blocked user ID or 0 for IP blocks.
742   ipb_user int unsigned NOT NULL default 0,
744   -- User ID who made the block.
745   ipb_by int unsigned NOT NULL default 0,
747   -- User name of blocker
748   ipb_by_text varchar(255) binary NOT NULL default '',
750   -- Text comment made by blocker.
751   ipb_reason tinyblob NOT NULL,
753   -- Creation (or refresh) date in standard YMDHMS form.
754   -- IP blocks expire automatically.
755   ipb_timestamp binary(14) NOT NULL default '',
757   -- Indicates that the IP address was banned because a banned
758   -- user accessed a page through it. If this is 1, ipb_address
759   -- will be hidden, and the block identified by block ID number.
760   ipb_auto bool NOT NULL default 0,
762   -- If set to 1, block applies only to logged-out users
763   ipb_anon_only bool NOT NULL default 0,
765   -- Block prevents account creation from matching IP addresses
766   ipb_create_account bool NOT NULL default 1,
768   -- Block triggers autoblocks
769   ipb_enable_autoblock bool NOT NULL default '1',
771   -- Time at which the block will expire.
772   -- May be "infinity"
773   ipb_expiry varbinary(14) NOT NULL default '',
775   -- Start and end of an address range, in hexadecimal
776   -- Size chosen to allow IPv6
777   -- FIXME: these fields were originally blank for single-IP blocks,
778   -- but now they are populated. No migration was ever done. They
779   -- should be fixed to be blank again for such blocks (bug 49504).
780   ipb_range_start tinyblob NOT NULL,
781   ipb_range_end tinyblob NOT NULL,
783   -- Flag for entries hidden from users and Sysops
784   ipb_deleted bool NOT NULL default 0,
786   -- Block prevents user from accessing Special:Emailuser
787   ipb_block_email bool NOT NULL default 0,
789   -- Block allows user to edit their own talk page
790   ipb_allow_usertalk bool NOT NULL default 0,
792   -- ID of the block that caused this block to exist
793   -- Autoblocks set this to the original block
794   -- so that the original block being deleted also
795   -- deletes the autoblocks
796   ipb_parent_block_id int default NULL
798 ) /*$wgDBTableOptions*/;
800 -- Unique index to support "user already blocked" messages
801 -- Any new options which prevent collisions should be included
802 CREATE UNIQUE INDEX /*i*/ipb_address ON /*_*/ipblocks (ipb_address(255), ipb_user, ipb_auto, ipb_anon_only);
804 CREATE INDEX /*i*/ipb_user ON /*_*/ipblocks (ipb_user);
805 CREATE INDEX /*i*/ipb_range ON /*_*/ipblocks (ipb_range_start(8), ipb_range_end(8));
806 CREATE INDEX /*i*/ipb_timestamp ON /*_*/ipblocks (ipb_timestamp);
807 CREATE INDEX /*i*/ipb_expiry ON /*_*/ipblocks (ipb_expiry);
808 CREATE INDEX /*i*/ipb_parent_block_id ON /*_*/ipblocks (ipb_parent_block_id);
812 -- Uploaded images and other files.
814 CREATE TABLE /*_*/image (
815   -- Filename.
816   -- This is also the title of the associated description page,
817   -- which will be in namespace 6 (NS_FILE).
818   img_name varchar(255) binary NOT NULL default '' PRIMARY KEY,
820   -- File size in bytes.
821   img_size int unsigned NOT NULL default 0,
823   -- For images, size in pixels.
824   img_width int NOT NULL default 0,
825   img_height int NOT NULL default 0,
827   -- Extracted Exif metadata stored as a serialized PHP array.
828   img_metadata mediumblob NOT NULL,
830   -- For images, bits per pixel if known.
831   img_bits int NOT NULL default 0,
833   -- Media type as defined by the MEDIATYPE_xxx constants
834   img_media_type ENUM("UNKNOWN", "BITMAP", "DRAWING", "AUDIO", "VIDEO", "MULTIMEDIA", "OFFICE", "TEXT", "EXECUTABLE", "ARCHIVE") default NULL,
836   -- major part of a MIME media type as defined by IANA
837   -- see http://www.iana.org/assignments/media-types/
838   img_major_mime ENUM("unknown", "application", "audio", "image", "text", "video", "message", "model", "multipart") NOT NULL default "unknown",
840   -- minor part of a MIME media type as defined by IANA
841   -- the minor parts are not required to adher to any standard
842   -- but should be consistent throughout the database
843   -- see http://www.iana.org/assignments/media-types/
844   img_minor_mime varbinary(100) NOT NULL default "unknown",
846   -- Description field as entered by the uploader.
847   -- This is displayed in image upload history and logs.
848   img_description tinyblob NOT NULL,
850   -- user_id and user_name of uploader.
851   img_user int unsigned NOT NULL default 0,
852   img_user_text varchar(255) binary NOT NULL,
854   -- Time of the upload.
855   img_timestamp varbinary(14) NOT NULL default '',
857   -- SHA-1 content hash in base-36
858   img_sha1 varbinary(32) NOT NULL default ''
859 ) /*$wgDBTableOptions*/;
861 CREATE INDEX /*i*/img_usertext_timestamp ON /*_*/image (img_user_text,img_timestamp);
862 -- Used by Special:ListFiles for sort-by-size
863 CREATE INDEX /*i*/img_size ON /*_*/image (img_size);
864 -- Used by Special:Newimages and Special:ListFiles
865 CREATE INDEX /*i*/img_timestamp ON /*_*/image (img_timestamp);
866 -- Used in API and duplicate search
867 CREATE INDEX /*i*/img_sha1 ON /*_*/image (img_sha1(10));
868 -- Used to get media of one type
869 CREATE INDEX /*i*/img_media_mime ON /*_*/image (img_media_type,img_major_mime,img_minor_mime);
873 -- Previous revisions of uploaded files.
874 -- Awkwardly, image rows have to be moved into
875 -- this table at re-upload time.
877 CREATE TABLE /*_*/oldimage (
878   -- Base filename: key to image.img_name
879   oi_name varchar(255) binary NOT NULL default '',
881   -- Filename of the archived file.
882   -- This is generally a timestamp and '!' prepended to the base name.
883   oi_archive_name varchar(255) binary NOT NULL default '',
885   -- Other fields as in image...
886   oi_size int unsigned NOT NULL default 0,
887   oi_width int NOT NULL default 0,
888   oi_height int NOT NULL default 0,
889   oi_bits int NOT NULL default 0,
890   oi_description tinyblob NOT NULL,
891   oi_user int unsigned NOT NULL default 0,
892   oi_user_text varchar(255) binary NOT NULL,
893   oi_timestamp binary(14) NOT NULL default '',
895   oi_metadata mediumblob NOT NULL,
896   oi_media_type ENUM("UNKNOWN", "BITMAP", "DRAWING", "AUDIO", "VIDEO", "MULTIMEDIA", "OFFICE", "TEXT", "EXECUTABLE", "ARCHIVE") default NULL,
897   oi_major_mime ENUM("unknown", "application", "audio", "image", "text", "video", "message", "model", "multipart") NOT NULL default "unknown",
898   oi_minor_mime varbinary(100) NOT NULL default "unknown",
899   oi_deleted tinyint unsigned NOT NULL default 0,
900   oi_sha1 varbinary(32) NOT NULL default ''
901 ) /*$wgDBTableOptions*/;
903 CREATE INDEX /*i*/oi_usertext_timestamp ON /*_*/oldimage (oi_user_text,oi_timestamp);
904 CREATE INDEX /*i*/oi_name_timestamp ON /*_*/oldimage (oi_name,oi_timestamp);
905 -- oi_archive_name truncated to 14 to avoid key length overflow
906 CREATE INDEX /*i*/oi_name_archive_name ON /*_*/oldimage (oi_name,oi_archive_name(14));
907 CREATE INDEX /*i*/oi_sha1 ON /*_*/oldimage (oi_sha1(10));
911 -- Record of deleted file data
913 CREATE TABLE /*_*/filearchive (
914   -- Unique row id
915   fa_id int NOT NULL PRIMARY KEY AUTO_INCREMENT,
917   -- Original base filename; key to image.img_name, page.page_title, etc
918   fa_name varchar(255) binary NOT NULL default '',
920   -- Filename of archived file, if an old revision
921   fa_archive_name varchar(255) binary default '',
923   -- Which storage bin (directory tree or object store) the file data
924   -- is stored in. Should be 'deleted' for files that have been deleted;
925   -- any other bin is not yet in use.
926   fa_storage_group varbinary(16),
928   -- SHA-1 of the file contents plus extension, used as a key for storage.
929   -- eg 8f8a562add37052a1848ff7771a2c515db94baa9.jpg
930   --
931   -- If NULL, the file was missing at deletion time or has been purged
932   -- from the archival storage.
933   fa_storage_key varbinary(64) default '',
935   -- Deletion information, if this file is deleted.
936   fa_deleted_user int,
937   fa_deleted_timestamp binary(14) default '',
938   fa_deleted_reason text,
940   -- Duped fields from image
941   fa_size int unsigned default 0,
942   fa_width int default 0,
943   fa_height int default 0,
944   fa_metadata mediumblob,
945   fa_bits int default 0,
946   fa_media_type ENUM("UNKNOWN", "BITMAP", "DRAWING", "AUDIO", "VIDEO", "MULTIMEDIA", "OFFICE", "TEXT", "EXECUTABLE", "ARCHIVE") default NULL,
947   fa_major_mime ENUM("unknown", "application", "audio", "image", "text", "video", "message", "model", "multipart") default "unknown",
948   fa_minor_mime varbinary(100) default "unknown",
949   fa_description tinyblob,
950   fa_user int unsigned default 0,
951   fa_user_text varchar(255) binary,
952   fa_timestamp binary(14) default '',
954   -- Visibility of deleted revisions, bitfield
955   fa_deleted tinyint unsigned NOT NULL default 0,
957   -- sha1 hash of file content
958   fa_sha1 varbinary(32) NOT NULL default ''
959 ) /*$wgDBTableOptions*/;
961 -- pick out by image name
962 CREATE INDEX /*i*/fa_name ON /*_*/filearchive (fa_name, fa_timestamp);
963 -- pick out dupe files
964 CREATE INDEX /*i*/fa_storage_group ON /*_*/filearchive (fa_storage_group, fa_storage_key);
965 -- sort by deletion time
966 CREATE INDEX /*i*/fa_deleted_timestamp ON /*_*/filearchive (fa_deleted_timestamp);
967 -- sort by uploader
968 CREATE INDEX /*i*/fa_user_timestamp ON /*_*/filearchive (fa_user_text,fa_timestamp);
969 -- find file by sha1, 10 bytes will be enough for hashes to be indexed
970 CREATE INDEX /*i*/fa_sha1 ON /*_*/filearchive (fa_sha1(10));
974 -- Store information about newly uploaded files before they're
975 -- moved into the actual filestore
977 CREATE TABLE /*_*/uploadstash (
978   us_id int unsigned NOT NULL PRIMARY KEY AUTO_INCREMENT,
980   -- the user who uploaded the file.
981   us_user int unsigned NOT NULL,
983   -- file key. this is how applications actually search for the file.
984   -- this might go away, or become the primary key.
985   us_key varchar(255) NOT NULL,
987   -- the original path
988   us_orig_path varchar(255) NOT NULL,
990   -- the temporary path at which the file is actually stored
991   us_path varchar(255) NOT NULL,
993   -- which type of upload the file came from (sometimes)
994   us_source_type varchar(50),
996   -- the date/time on which the file was added
997   us_timestamp varbinary(14) NOT NULL,
999   us_status varchar(50) NOT NULL,
1001   -- chunk counter starts at 0, current offset is stored in us_size
1002   us_chunk_inx int unsigned NULL,
1004   -- Serialized file properties from File::getPropsFromPath
1005   us_props blob,
1007   -- file size in bytes
1008   us_size int unsigned NOT NULL,
1009   -- this hash comes from File::sha1Base36(), and is 31 characters
1010   us_sha1 varchar(31) NOT NULL,
1011   us_mime varchar(255),
1012   -- Media type as defined by the MEDIATYPE_xxx constants, should duplicate definition in the image table
1013   us_media_type ENUM("UNKNOWN", "BITMAP", "DRAWING", "AUDIO", "VIDEO", "MULTIMEDIA", "OFFICE", "TEXT", "EXECUTABLE", "ARCHIVE") default NULL,
1014   -- image-specific properties
1015   us_image_width int unsigned,
1016   us_image_height int unsigned,
1017   us_image_bits smallint unsigned
1019 ) /*$wgDBTableOptions*/;
1021 -- sometimes there's a delete for all of a user's stuff.
1022 CREATE INDEX /*i*/us_user ON /*_*/uploadstash (us_user);
1023 -- pick out files by key, enforce key uniqueness
1024 CREATE UNIQUE INDEX /*i*/us_key ON /*_*/uploadstash (us_key);
1025 -- the abandoned upload cleanup script needs this
1026 CREATE INDEX /*i*/us_timestamp ON /*_*/uploadstash (us_timestamp);
1030 -- Primarily a summary table for Special:Recentchanges,
1031 -- this table contains some additional info on edits from
1032 -- the last few days, see Article::editUpdates()
1034 CREATE TABLE /*_*/recentchanges (
1035   rc_id int NOT NULL PRIMARY KEY AUTO_INCREMENT,
1036   rc_timestamp varbinary(14) NOT NULL default '',
1038   -- This is no longer used
1039   -- Field kept in database for downgrades
1040   -- @todo: add drop patch with 1.24
1041   rc_cur_time varbinary(14) NOT NULL default '',
1043   -- As in revision
1044   rc_user int unsigned NOT NULL default 0,
1045   rc_user_text varchar(255) binary NOT NULL,
1047   -- When pages are renamed, their RC entries do _not_ change.
1048   rc_namespace int NOT NULL default 0,
1049   rc_title varchar(255) binary NOT NULL default '',
1051   -- as in revision...
1052   rc_comment varchar(255) binary NOT NULL default '',
1053   rc_minor tinyint unsigned NOT NULL default 0,
1055   -- Edits by user accounts with the 'bot' rights key are
1056   -- marked with a 1 here, and will be hidden from the
1057   -- default view.
1058   rc_bot tinyint unsigned NOT NULL default 0,
1060   -- Set if this change corresponds to a page creation
1061   rc_new tinyint unsigned NOT NULL default 0,
1063   -- Key to page_id (was cur_id prior to 1.5).
1064   -- This will keep links working after moves while
1065   -- retaining the at-the-time name in the changes list.
1066   rc_cur_id int unsigned NOT NULL default 0,
1068   -- rev_id of the given revision
1069   rc_this_oldid int unsigned NOT NULL default 0,
1071   -- rev_id of the prior revision, for generating diff links.
1072   rc_last_oldid int unsigned NOT NULL default 0,
1074   -- The type of change entry (RC_EDIT,RC_NEW,RC_LOG,RC_EXTERNAL)
1075   rc_type tinyint unsigned NOT NULL default 0,
1077   -- The source of the change entry (replaces rc_type)
1078   -- default of '' is temporary, needed for initial migration
1079   rc_source varchar(16) binary not null default '',
1081   -- If the Recent Changes Patrol option is enabled,
1082   -- users may mark edits as having been reviewed to
1083   -- remove a warning flag on the RC list.
1084   -- A value of 1 indicates the page has been reviewed.
1085   rc_patrolled tinyint unsigned NOT NULL default 0,
1087   -- Recorded IP address the edit was made from, if the
1088   -- $wgPutIPinRC option is enabled.
1089   rc_ip varbinary(40) NOT NULL default '',
1091   -- Text length in characters before
1092   -- and after the edit
1093   rc_old_len int,
1094   rc_new_len int,
1096   -- Visibility of recent changes items, bitfield
1097   rc_deleted tinyint unsigned NOT NULL default 0,
1099   -- Value corresponding to log_id, specific log entries
1100   rc_logid int unsigned NOT NULL default 0,
1101   -- Store log type info here, or null
1102   rc_log_type varbinary(255) NULL default NULL,
1103   -- Store log action or null
1104   rc_log_action varbinary(255) NULL default NULL,
1105   -- Log params
1106   rc_params blob NULL
1107 ) /*$wgDBTableOptions*/;
1109 CREATE INDEX /*i*/rc_timestamp ON /*_*/recentchanges (rc_timestamp);
1110 CREATE INDEX /*i*/rc_namespace_title ON /*_*/recentchanges (rc_namespace, rc_title);
1111 CREATE INDEX /*i*/rc_cur_id ON /*_*/recentchanges (rc_cur_id);
1112 CREATE INDEX /*i*/new_name_timestamp ON /*_*/recentchanges (rc_new,rc_namespace,rc_timestamp);
1113 CREATE INDEX /*i*/rc_ip ON /*_*/recentchanges (rc_ip);
1114 CREATE INDEX /*i*/rc_ns_usertext ON /*_*/recentchanges (rc_namespace, rc_user_text);
1115 CREATE INDEX /*i*/rc_user_text ON /*_*/recentchanges (rc_user_text, rc_timestamp);
1118 CREATE TABLE /*_*/watchlist (
1119   -- Key to user.user_id
1120   wl_user int unsigned NOT NULL,
1122   -- Key to page_namespace/page_title
1123   -- Note that users may watch pages which do not exist yet,
1124   -- or existed in the past but have been deleted.
1125   wl_namespace int NOT NULL default 0,
1126   wl_title varchar(255) binary NOT NULL default '',
1128   -- Timestamp used to send notification e-mails and show "updated since last visit" markers on
1129   -- history and recent changes / watchlist. Set to NULL when the user visits the latest revision
1130   -- of the page, which means that they should be sent an e-mail on the next change.
1131   wl_notificationtimestamp varbinary(14)
1133 ) /*$wgDBTableOptions*/;
1135 CREATE UNIQUE INDEX /*i*/wl_user ON /*_*/watchlist (wl_user, wl_namespace, wl_title);
1136 CREATE INDEX /*i*/namespace_title ON /*_*/watchlist (wl_namespace, wl_title);
1140 -- When using the default MySQL search backend, page titles
1141 -- and text are munged to strip markup, do Unicode case folding,
1142 -- and prepare the result for MySQL's fulltext index.
1144 -- This table must be MyISAM; InnoDB does not support the needed
1145 -- fulltext index.
1147 CREATE TABLE /*_*/searchindex (
1148   -- Key to page_id
1149   si_page int unsigned NOT NULL,
1151   -- Munged version of title
1152   si_title varchar(255) NOT NULL default '',
1154   -- Munged version of body text
1155   si_text mediumtext NOT NULL
1156 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1158 CREATE UNIQUE INDEX /*i*/si_page ON /*_*/searchindex (si_page);
1159 CREATE FULLTEXT INDEX /*i*/si_title ON /*_*/searchindex (si_title);
1160 CREATE FULLTEXT INDEX /*i*/si_text ON /*_*/searchindex (si_text);
1164 -- Recognized interwiki link prefixes
1166 CREATE TABLE /*_*/interwiki (
1167   -- The interwiki prefix, (e.g. "Meatball", or the language prefix "de")
1168   iw_prefix varchar(32) NOT NULL,
1170   -- The URL of the wiki, with "$1" as a placeholder for an article name.
1171   -- Any spaces in the name will be transformed to underscores before
1172   -- insertion.
1173   iw_url blob NOT NULL,
1175   -- The URL of the file api.php
1176   iw_api blob NOT NULL,
1178   -- The name of the database (for a connection to be established with wfGetLB( 'wikiid' ))
1179   iw_wikiid varchar(64) NOT NULL,
1181   -- A boolean value indicating whether the wiki is in this project
1182   -- (used, for example, to detect redirect loops)
1183   iw_local bool NOT NULL,
1185   -- Boolean value indicating whether interwiki transclusions are allowed.
1186   iw_trans tinyint NOT NULL default 0
1187 ) /*$wgDBTableOptions*/;
1189 CREATE UNIQUE INDEX /*i*/iw_prefix ON /*_*/interwiki (iw_prefix);
1193 -- Used for caching expensive grouped queries
1195 CREATE TABLE /*_*/querycache (
1196   -- A key name, generally the base name of of the special page.
1197   qc_type varbinary(32) NOT NULL,
1199   -- Some sort of stored value. Sizes, counts...
1200   qc_value int unsigned NOT NULL default 0,
1202   -- Target namespace+title
1203   qc_namespace int NOT NULL default 0,
1204   qc_title varchar(255) binary NOT NULL default ''
1205 ) /*$wgDBTableOptions*/;
1207 CREATE INDEX /*i*/qc_type ON /*_*/querycache (qc_type,qc_value);
1211 -- For a few generic cache operations if not using Memcached
1213 CREATE TABLE /*_*/objectcache (
1214   keyname varbinary(255) NOT NULL default '' PRIMARY KEY,
1215   value mediumblob,
1216   exptime datetime
1217 ) /*$wgDBTableOptions*/;
1218 CREATE INDEX /*i*/exptime ON /*_*/objectcache (exptime);
1222 -- Cache of interwiki transclusion
1224 CREATE TABLE /*_*/transcache (
1225   tc_url varbinary(255) NOT NULL,
1226   tc_contents text,
1227   tc_time binary(14) NOT NULL
1228 ) /*$wgDBTableOptions*/;
1230 CREATE UNIQUE INDEX /*i*/tc_url_idx ON /*_*/transcache (tc_url);
1233 CREATE TABLE /*_*/logging (
1234   -- Log ID, for referring to this specific log entry, probably for deletion and such.
1235   log_id int unsigned NOT NULL PRIMARY KEY AUTO_INCREMENT,
1237   -- Symbolic keys for the general log type and the action type
1238   -- within the log. The output format will be controlled by the
1239   -- action field, but only the type controls categorization.
1240   log_type varbinary(32) NOT NULL default '',
1241   log_action varbinary(32) NOT NULL default '',
1243   -- Timestamp. Duh.
1244   log_timestamp binary(14) NOT NULL default '19700101000000',
1246   -- The user who performed this action; key to user_id
1247   log_user int unsigned NOT NULL default 0,
1249   -- Name of the user who performed this action
1250   log_user_text varchar(255) binary NOT NULL default '',
1252   -- Key to the page affected. Where a user is the target,
1253   -- this will point to the user page.
1254   log_namespace int NOT NULL default 0,
1255   log_title varchar(255) binary NOT NULL default '',
1256   log_page int unsigned NULL,
1258   -- Freeform text. Interpreted as edit history comments.
1259   log_comment varchar(255) NOT NULL default '',
1261   -- miscellaneous parameters:
1262   -- LF separated list (old system) or serialized PHP array (new system)
1263   log_params blob NOT NULL,
1265   -- rev_deleted for logs
1266   log_deleted tinyint unsigned NOT NULL default 0
1267 ) /*$wgDBTableOptions*/;
1269 CREATE INDEX /*i*/type_time ON /*_*/logging (log_type, log_timestamp);
1270 CREATE INDEX /*i*/user_time ON /*_*/logging (log_user, log_timestamp);
1271 CREATE INDEX /*i*/page_time ON /*_*/logging (log_namespace, log_title, log_timestamp);
1272 CREATE INDEX /*i*/times ON /*_*/logging (log_timestamp);
1273 CREATE INDEX /*i*/log_user_type_time ON /*_*/logging (log_user, log_type, log_timestamp);
1274 CREATE INDEX /*i*/log_page_id_time ON /*_*/logging (log_page,log_timestamp);
1275 CREATE INDEX /*i*/type_action ON /*_*/logging (log_type, log_action, log_timestamp);
1276 CREATE INDEX /*i*/log_user_text_type_time ON /*_*/logging (log_user_text, log_type, log_timestamp);
1277 CREATE INDEX /*i*/log_user_text_time ON /*_*/logging (log_user_text, log_timestamp);
1280 CREATE TABLE /*_*/log_search (
1281   -- The type of ID (rev ID, log ID, rev timestamp, username)
1282   ls_field varbinary(32) NOT NULL,
1283   -- The value of the ID
1284   ls_value varchar(255) NOT NULL,
1285   -- Key to log_id
1286   ls_log_id int unsigned NOT NULL default 0
1287 ) /*$wgDBTableOptions*/;
1288 CREATE UNIQUE INDEX /*i*/ls_field_val ON /*_*/log_search (ls_field,ls_value,ls_log_id);
1289 CREATE INDEX /*i*/ls_log_id ON /*_*/log_search (ls_log_id);
1292 -- Jobs performed by parallel apache threads or a command-line daemon
1293 CREATE TABLE /*_*/job (
1294   job_id int unsigned NOT NULL PRIMARY KEY AUTO_INCREMENT,
1296   -- Command name
1297   -- Limited to 60 to prevent key length overflow
1298   job_cmd varbinary(60) NOT NULL default '',
1300   -- Namespace and title to act on
1301   -- Should be 0 and '' if the command does not operate on a title
1302   job_namespace int NOT NULL,
1303   job_title varchar(255) binary NOT NULL,
1305   -- Timestamp of when the job was inserted
1306   -- NULL for jobs added before addition of the timestamp
1307   job_timestamp varbinary(14) NULL default NULL,
1309   -- Any other parameters to the command
1310   -- Stored as a PHP serialized array, or an empty string if there are no parameters
1311   job_params blob NOT NULL,
1313   -- Random, non-unique, number used for job acquisition (for lock concurrency)
1314   job_random integer unsigned NOT NULL default 0,
1316   -- The number of times this job has been locked
1317   job_attempts integer unsigned NOT NULL default 0,
1319   -- Field that conveys process locks on rows via process UUIDs
1320   job_token varbinary(32) NOT NULL default '',
1322   -- Timestamp when the job was locked
1323   job_token_timestamp varbinary(14) NULL default NULL,
1325   -- Base 36 SHA1 of the job parameters relevant to detecting duplicates
1326   job_sha1 varbinary(32) NOT NULL default ''
1327 ) /*$wgDBTableOptions*/;
1329 CREATE INDEX /*i*/job_sha1 ON /*_*/job (job_sha1);
1330 CREATE INDEX /*i*/job_cmd_token ON /*_*/job (job_cmd,job_token,job_random);
1331 CREATE INDEX /*i*/job_cmd_token_id ON /*_*/job (job_cmd,job_token,job_id);
1332 CREATE INDEX /*i*/job_cmd ON /*_*/job (job_cmd, job_namespace, job_title, job_params(128));
1333 CREATE INDEX /*i*/job_timestamp ON /*_*/job (job_timestamp);
1336 -- Details of updates to cached special pages
1337 CREATE TABLE /*_*/querycache_info (
1338   -- Special page name
1339   -- Corresponds to a qc_type value
1340   qci_type varbinary(32) NOT NULL default '',
1342   -- Timestamp of last update
1343   qci_timestamp binary(14) NOT NULL default '19700101000000'
1344 ) /*$wgDBTableOptions*/;
1346 CREATE UNIQUE INDEX /*i*/qci_type ON /*_*/querycache_info (qci_type);
1349 -- For each redirect, this table contains exactly one row defining its target
1350 CREATE TABLE /*_*/redirect (
1351   -- Key to the page_id of the redirect page
1352   rd_from int unsigned NOT NULL default 0 PRIMARY KEY,
1354   -- Key to page_namespace/page_title of the target page.
1355   -- The target page may or may not exist, and due to renames
1356   -- and deletions may refer to different page records as time
1357   -- goes by.
1358   rd_namespace int NOT NULL default 0,
1359   rd_title varchar(255) binary NOT NULL default '',
1360   rd_interwiki varchar(32) default NULL,
1361   rd_fragment varchar(255) binary default NULL
1362 ) /*$wgDBTableOptions*/;
1364 CREATE INDEX /*i*/rd_ns_title ON /*_*/redirect (rd_namespace,rd_title,rd_from);
1367 -- Used for caching expensive grouped queries that need two links (for example double-redirects)
1368 CREATE TABLE /*_*/querycachetwo (
1369   -- A key name, generally the base name of of the special page.
1370   qcc_type varbinary(32) NOT NULL,
1372   -- Some sort of stored value. Sizes, counts...
1373   qcc_value int unsigned NOT NULL default 0,
1375   -- Target namespace+title
1376   qcc_namespace int NOT NULL default 0,
1377   qcc_title varchar(255) binary NOT NULL default '',
1379   -- Target namespace+title2
1380   qcc_namespacetwo int NOT NULL default 0,
1381   qcc_titletwo varchar(255) binary NOT NULL default ''
1382 ) /*$wgDBTableOptions*/;
1384 CREATE INDEX /*i*/qcc_type ON /*_*/querycachetwo (qcc_type,qcc_value);
1385 CREATE INDEX /*i*/qcc_title ON /*_*/querycachetwo (qcc_type,qcc_namespace,qcc_title);
1386 CREATE INDEX /*i*/qcc_titletwo ON /*_*/querycachetwo (qcc_type,qcc_namespacetwo,qcc_titletwo);
1389 -- Used for storing page restrictions (i.e. protection levels)
1390 CREATE TABLE /*_*/page_restrictions (
1391   -- Field for an ID for this restrictions row (sort-key for Special:ProtectedPages)
1392   pr_id int unsigned NOT NULL PRIMARY KEY AUTO_INCREMENT,
1393   -- Page to apply restrictions to (Foreign Key to page).
1394   pr_page int NOT NULL,
1395   -- The protection type (edit, move, etc)
1396   pr_type varbinary(60) NOT NULL,
1397   -- The protection level (Sysop, autoconfirmed, etc)
1398   pr_level varbinary(60) NOT NULL,
1399   -- Whether or not to cascade the protection down to pages transcluded.
1400   pr_cascade tinyint NOT NULL,
1401   -- Field for future support of per-user restriction.
1402   pr_user int NULL,
1403   -- Field for time-limited protection.
1404   pr_expiry varbinary(14) NULL
1405 ) /*$wgDBTableOptions*/;
1407 CREATE UNIQUE INDEX /*i*/pr_pagetype ON /*_*/page_restrictions (pr_page,pr_type);
1408 CREATE INDEX /*i*/pr_typelevel ON /*_*/page_restrictions (pr_type,pr_level);
1409 CREATE INDEX /*i*/pr_level ON /*_*/page_restrictions (pr_level);
1410 CREATE INDEX /*i*/pr_cascade ON /*_*/page_restrictions (pr_cascade);
1413 -- Protected titles - nonexistent pages that have been protected
1414 CREATE TABLE /*_*/protected_titles (
1415   pt_namespace int NOT NULL,
1416   pt_title varchar(255) binary NOT NULL,
1417   pt_user int unsigned NOT NULL,
1418   pt_reason tinyblob,
1419   pt_timestamp binary(14) NOT NULL,
1420   pt_expiry varbinary(14) NOT NULL default '',
1421   pt_create_perm varbinary(60) NOT NULL
1422 ) /*$wgDBTableOptions*/;
1424 CREATE UNIQUE INDEX /*i*/pt_namespace_title ON /*_*/protected_titles (pt_namespace,pt_title);
1425 CREATE INDEX /*i*/pt_timestamp ON /*_*/protected_titles (pt_timestamp);
1428 -- Name/value pairs indexed by page_id
1429 CREATE TABLE /*_*/page_props (
1430   pp_page int NOT NULL,
1431   pp_propname varbinary(60) NOT NULL,
1432   pp_value blob NOT NULL
1433 ) /*$wgDBTableOptions*/;
1435 CREATE UNIQUE INDEX /*i*/pp_page_propname ON /*_*/page_props (pp_page,pp_propname);
1436 CREATE UNIQUE INDEX /*i*/pp_propname_page ON /*_*/page_props (pp_propname,pp_page);
1439 -- A table to log updates, one text key row per update.
1440 CREATE TABLE /*_*/updatelog (
1441   ul_key varchar(255) NOT NULL PRIMARY KEY,
1442   ul_value blob
1443 ) /*$wgDBTableOptions*/;
1446 -- A table to track tags for revisions, logs and recent changes.
1447 CREATE TABLE /*_*/change_tag (
1448   -- RCID for the change
1449   ct_rc_id int NULL,
1450   -- LOGID for the change
1451   ct_log_id int NULL,
1452   -- REVID for the change
1453   ct_rev_id int NULL,
1454   -- Tag applied
1455   ct_tag varchar(255) NOT NULL,
1456   -- Parameters for the tag, presently unused
1457   ct_params blob NULL
1458 ) /*$wgDBTableOptions*/;
1460 CREATE UNIQUE INDEX /*i*/change_tag_rc_tag ON /*_*/change_tag (ct_rc_id,ct_tag);
1461 CREATE UNIQUE INDEX /*i*/change_tag_log_tag ON /*_*/change_tag (ct_log_id,ct_tag);
1462 CREATE UNIQUE INDEX /*i*/change_tag_rev_tag ON /*_*/change_tag (ct_rev_id,ct_tag);
1463 -- Covering index, so we can pull all the info only out of the index.
1464 CREATE INDEX /*i*/change_tag_tag_id ON /*_*/change_tag (ct_tag,ct_rc_id,ct_rev_id,ct_log_id);
1467 -- Rollup table to pull a LIST of tags simply without ugly GROUP_CONCAT
1468 -- that only works on MySQL 4.1+
1469 CREATE TABLE /*_*/tag_summary (
1470   -- RCID for the change
1471   ts_rc_id int NULL,
1472   -- LOGID for the change
1473   ts_log_id int NULL,
1474   -- REVID for the change
1475   ts_rev_id int NULL,
1476   -- Comma-separated list of tags
1477   ts_tags blob NOT NULL
1478 ) /*$wgDBTableOptions*/;
1480 CREATE UNIQUE INDEX /*i*/tag_summary_rc_id ON /*_*/tag_summary (ts_rc_id);
1481 CREATE UNIQUE INDEX /*i*/tag_summary_log_id ON /*_*/tag_summary (ts_log_id);
1482 CREATE UNIQUE INDEX /*i*/tag_summary_rev_id ON /*_*/tag_summary (ts_rev_id);
1485 CREATE TABLE /*_*/valid_tag (
1486   vt_tag varchar(255) NOT NULL PRIMARY KEY
1487 ) /*$wgDBTableOptions*/;
1489 -- Table for storing localisation data
1490 CREATE TABLE /*_*/l10n_cache (
1491   -- Language code
1492   lc_lang varbinary(32) NOT NULL,
1493   -- Cache key
1494   lc_key varchar(255) NOT NULL,
1495   -- Value
1496   lc_value mediumblob NOT NULL
1497 ) /*$wgDBTableOptions*/;
1498 CREATE INDEX /*i*/lc_lang_key ON /*_*/l10n_cache (lc_lang, lc_key);
1500 -- Table for caching JSON message blobs for the resource loader
1501 CREATE TABLE /*_*/msg_resource (
1502   -- Resource name
1503   mr_resource varbinary(255) NOT NULL,
1504   -- Language code
1505   mr_lang varbinary(32) NOT NULL,
1506   -- JSON blob
1507   mr_blob mediumblob NOT NULL,
1508   -- Timestamp of last update
1509   mr_timestamp binary(14) NOT NULL
1510 ) /*$wgDBTableOptions*/;
1511 CREATE UNIQUE INDEX /*i*/mr_resource_lang ON /*_*/msg_resource (mr_resource, mr_lang);
1513 -- Table for administering which message is contained in which resource
1514 CREATE TABLE /*_*/msg_resource_links (
1515   mrl_resource varbinary(255) NOT NULL,
1516   -- Message key
1517   mrl_message varbinary(255) NOT NULL
1518 ) /*$wgDBTableOptions*/;
1519 CREATE UNIQUE INDEX /*i*/mrl_message_resource ON /*_*/msg_resource_links (mrl_message, mrl_resource);
1521 -- Table caching which local files a module depends on that aren't
1522 -- registered directly, used for fast retrieval of file dependency.
1523 -- Currently only used for tracking images that CSS depends on
1524 CREATE TABLE /*_*/module_deps (
1525   -- Module name
1526   md_module varbinary(255) NOT NULL,
1527   -- Skin name
1528   md_skin varbinary(32) NOT NULL,
1529   -- JSON blob with file dependencies
1530   md_deps mediumblob NOT NULL
1531 ) /*$wgDBTableOptions*/;
1532 CREATE UNIQUE INDEX /*i*/md_module_skin ON /*_*/module_deps (md_module, md_skin);
1534 -- Holds all the sites known to the wiki.
1535 CREATE TABLE /*_*/sites (
1536   -- Numeric id of the site
1537   site_id                    INT UNSIGNED        NOT NULL PRIMARY KEY AUTO_INCREMENT,
1539   -- Global identifier for the site, ie 'enwiktionary'
1540   site_global_key            varbinary(32)       NOT NULL,
1542   -- Type of the site, ie 'mediawiki'
1543   site_type                  varbinary(32)       NOT NULL,
1545   -- Group of the site, ie 'wikipedia'
1546   site_group                 varbinary(32)       NOT NULL,
1548   -- Source of the site data, ie 'local', 'wikidata', 'my-magical-repo'
1549   site_source                varbinary(32)       NOT NULL,
1551   -- Language code of the sites primary language.
1552   site_language              varbinary(32)       NOT NULL,
1554   -- Protocol of the site, ie 'http://', 'irc://', '//'
1555   -- This field is an index for lookups and is build from type specific data in site_data.
1556   site_protocol              varbinary(32)       NOT NULL,
1558   -- Domain of the site in reverse order, ie 'org.mediawiki.www.'
1559   -- This field is an index for lookups and is build from type specific data in site_data.
1560   site_domain                VARCHAR(255)        NOT NULL,
1562   -- Type dependent site data.
1563   site_data                  BLOB                NOT NULL,
1565   -- If site.tld/path/key:pageTitle should forward users to  the page on
1566   -- the actual site, where "key" is the local identifier.
1567   site_forward              bool                NOT NULL,
1569   -- Type dependent site config.
1570   -- For instance if template transclusion should be allowed if it's a MediaWiki.
1571   site_config               BLOB                NOT NULL
1572 ) /*$wgDBTableOptions*/;
1574 CREATE UNIQUE INDEX /*i*/sites_global_key ON /*_*/sites (site_global_key);
1575 CREATE INDEX /*i*/sites_type ON /*_*/sites (site_type);
1576 CREATE INDEX /*i*/sites_group ON /*_*/sites (site_group);
1577 CREATE INDEX /*i*/sites_source ON /*_*/sites (site_source);
1578 CREATE INDEX /*i*/sites_language ON /*_*/sites (site_language);
1579 CREATE INDEX /*i*/sites_protocol ON /*_*/sites (site_protocol);
1580 CREATE INDEX /*i*/sites_domain ON /*_*/sites (site_domain);
1581 CREATE INDEX /*i*/sites_forward ON /*_*/sites (site_forward);
1583 -- Links local site identifiers to their corresponding site.
1584 CREATE TABLE /*_*/site_identifiers (
1585   -- Key on site.site_id
1586   si_site                    INT UNSIGNED        NOT NULL,
1588   -- local key type, ie 'interwiki' or 'langlink'
1589   si_type                    varbinary(32)       NOT NULL,
1591   -- local key value, ie 'en' or 'wiktionary'
1592   si_key                     varbinary(32)       NOT NULL
1593 ) /*$wgDBTableOptions*/;
1595 CREATE UNIQUE INDEX /*i*/site_ids_type ON /*_*/site_identifiers (si_type, si_key);
1596 CREATE INDEX /*i*/site_ids_site ON /*_*/site_identifiers (si_site);
1597 CREATE INDEX /*i*/site_ids_key ON /*_*/site_identifiers (si_key);
1599 -- vim: sw=2 sts=2 et