* (bug 719) Increase namespace fields from tinyint to regular int
[lhc/web/wiklou.git] / maintenance / tables.sql
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.
4
5 --
6 -- General notes:
7 --
8 -- If possible, create tables as InnoDB to benefit from the
9 -- superior resiliency against crashes and ability to read
10 -- during writes (and write during reads!)
11 --
12 -- Only the 'searchindex' table requires MyISAM due to the
13 -- requirement for fulltext index support, which is missing
14 -- from InnoDB.
15 --
16 --
17 -- The MySQL table backend for MediaWiki currently uses
18 -- 14-character CHAR or VARCHAR fields to store timestamps.
19 -- The format is YYYYMMDDHHMMSS, which is derived from the
20 -- text format of MySQL's TIMESTAMP fields.
21 --
22 -- Historically TIMESTAMP fields were used, but abandoned
23 -- in early 2002 after a lot of trouble with the fields
24 -- auto-updating.
25 --
26 -- The PostgreSQL backend uses DATETIME fields for timestamps,
27 -- and we will migrate the MySQL definitions at some point as
28 -- well.
29 --
30 --
31 -- The /*$wgDBprefix*/ comments in this and other files are
32 -- replaced with the defined table prefix by the installer
33 -- and updater scripts. If you are installing or running
34 -- updates manually, you will need to manually insert the
35 -- table prefix if any when running these scripts.
36 --
37
38
39 --
40 -- The user table contains basic account information,
41 -- authentication keys, etc.
42 --
43 -- Some multi-wiki sites may share a single central user table
44 -- between separate wikis using the $wgSharedDB setting.
45 --
46 -- Note that when a external authentication plugin is used,
47 -- user table entries still need to be created to store
48 -- preferences and to key tracking information in the other
49 -- tables.
50 --
51 CREATE TABLE /*$wgDBprefix*/user (
52 user_id int(5) unsigned NOT NULL auto_increment,
53
54 -- Usernames must be unique, must not be in the form of
55 -- an IP address. _Shouldn't_ allow slashes or case
56 -- conflicts. Spaces are allowed, and are _not_ converted
57 -- to underscores like titles. (Conflicts?)
58 user_name varchar(255) binary NOT NULL default '',
59
60 -- Optional 'real name' to be displayed in credit listings
61 user_real_name varchar(255) binary NOT NULL default '',
62
63 -- Password hashes, normally hashed like so:
64 -- MD5(CONCAT(user_id,'-',MD5(plaintext_password)))
65 user_password tinyblob NOT NULL default '',
66
67 -- When using 'mail me a new password', a random
68 -- password is generated and the hash stored here.
69 -- The previous password is left in place until
70 -- someone actually logs in with the new password,
71 -- at which point the hash is moved to user_password
72 -- and the old password is invalidated.
73 user_newpassword tinyblob NOT NULL default '',
74
75 -- Note: email should be restricted, not public info.
76 -- Same with passwords. ;)
77 user_email tinytext NOT NULL default '',
78
79 -- Newline-separated list of name=value pairs.
80 user_options blob NOT NULL default '',
81
82 -- This is a timestamp which is updated when a user
83 -- logs in, logs out, changes preferences, or performs
84 -- some other action requiring HTML cache invalidation
85 -- to ensure that the UI is updated.
86 user_touched char(14) binary NOT NULL default '',
87
88 -- A pseudorandomly generated value that is stored in
89 -- a cookie when the "remember password" feature is
90 -- used (previously, a hash of the password was used, but
91 -- this was vulnerable to cookie-stealing attacks)
92 user_token char(32) binary NOT NULL default '',
93
94 -- Initially NULL; when a user's e-mail address has been
95 -- validated by returning with a mailed token, this is
96 -- set to the current timestamp.
97 user_email_authenticated CHAR(14) BINARY,
98
99 -- Randomly generated token created when the e-mail address
100 -- is set and a confirmation test mail sent.
101 user_email_token CHAR(32) BINARY,
102
103 -- Expiration date for the
104 user_email_token_expires CHAR(14) BINARY,
105
106 PRIMARY KEY user_id (user_id),
107 INDEX user_name (user_name(10)),
108 INDEX (user_email_token)
109
110 ) TYPE=InnoDB;
111
112 --
113 -- User permissions have been broken out to a separate table;
114 -- this allows sites with a shared user table to have different
115 -- permissions assigned to a user in each project.
116 --
117 -- TODO: de-blob this; it should be a property table
118 --
119 CREATE TABLE /*$wgDBprefix*/user_rights (
120 -- Key to user_id
121 ur_user int(5) unsigned NOT NULL,
122
123 -- Comma-separated list of permission keys
124 ur_rights tinyblob NOT NULL default '',
125
126 UNIQUE KEY ur_user (ur_user)
127
128 ) TYPE=InnoDB;
129
130 -- The following table is no longer needed with Enotif >= 2.00
131 -- Entries for newtalk on user_talk page are handled like in the watchlist table
132 -- CREATE TABLE /*$wgDBprefix*/user_newtalk (
133 -- user_id int(5) NOT NULL default '0',
134 -- user_ip varchar(40) NOT NULL default '',
135 -- INDEX user_id (user_id),
136 -- INDEX user_ip (user_ip)
137 -- );
138
139
140 --
141 -- Core of the wiki: each page has an entry here which identifies
142 -- it by title and contains some essential metadata.
143 --
144 CREATE TABLE /*$wgDBprefix*/page (
145 -- Unique identifier number. The page_id will be preserved across
146 -- edits and rename operations, but not deletions and recreations.
147 page_id int(8) unsigned NOT NULL auto_increment,
148
149 -- A page name is broken into a namespace and a title.
150 -- The namespace keys are UI-language-independent constants,
151 -- defined in Namespace.php.
152 page_namespace int NOT NULL,
153
154 -- The rest of the title, as text.
155 -- Spaces are transformed into underscores in title storage.
156 page_title varchar(255) binary NOT NULL,
157
158 -- Comma-separated set of permission keys indicating who
159 -- can move or edit the page.
160 page_restrictions tinyblob NOT NULL default '',
161
162 -- Number of times this page has been viewed.
163 page_counter bigint(20) unsigned NOT NULL default '0',
164
165 -- 1 indicates the article is a redirect.
166 page_is_redirect tinyint(1) unsigned NOT NULL default '0',
167
168 -- 1 indicates this is a new entry, with only one edit.
169 -- Not all pages with one edit are new pages.
170 page_is_new tinyint(1) unsigned NOT NULL default '0',
171
172 -- Random value between 0 and 1, used for Special:Randompage
173 page_random real unsigned NOT NULL,
174
175 -- This timestamp is updated whenever the page changes in
176 -- a way requiring it to be re-rendered, invalidating caches.
177 -- On top of editing this includes permission changes,
178 -- creation or deletion of linked pages, and alteration
179 -- of contained templates.
180 page_touched char(14) binary NOT NULL default '',
181
182
183 -- Handy key to revision.rev_id of the current revision.
184 -- This may be 0 during page creation, but that shouldn't
185 -- happen outside of a transaction... hopefully.
186 page_latest int(8) unsigned NOT NULL,
187
188 -- Uncompressed length in bytes of the page's current source text.
189 page_len int(8) unsigned NOT NULL,
190
191 PRIMARY KEY page_id (page_id),
192 UNIQUE INDEX name_title (page_namespace,page_title),
193
194 -- Special-purpose indexes
195 INDEX (page_random),
196 INDEX (page_len)
197
198 ) TYPE=InnoDB;
199
200 --
201 -- Every edit of a page creates also a revision row.
202 -- This stores metadata about the revision, and a reference
203 -- to the text storage backend.
204 --
205 CREATE TABLE /*$wgDBprefix*/revision (
206 rev_id int(8) unsigned NOT NULL auto_increment,
207
208 -- Key to page_id. This should _never_ be invalid.
209 rev_page int(8) unsigned NOT NULL,
210
211 -- Key to text.old_id, where the actual bulk text is stored.
212 -- It's possible for multiple revisions to use the same text,
213 -- for instance revisions where only metadata is altered
214 -- or a rollback to a previous version.
215 rev_text_id int(8) unsigned NOT NULL,
216
217 -- Text comment summarizing the change.
218 -- This text is shown in the history and other changes lists,
219 -- rendered in a subset of wiki markup.
220 rev_comment tinyblob NOT NULL default '',
221
222 -- Key to user_id of the user who made this edit.
223 -- Stores 0 for anonymous edits and for some mass imports.
224 rev_user int(5) unsigned NOT NULL default '0',
225
226 -- Text username or IP address of the editor.
227 rev_user_text varchar(255) binary NOT NULL default '',
228
229 -- Timestamp
230 rev_timestamp char(14) binary NOT NULL default '',
231
232 -- Records whether the user marked the 'minor edit' checkbox.
233 -- Many automated edits are marked as minor.
234 rev_minor_edit tinyint(1) unsigned NOT NULL default '0',
235
236 -- Not yet used; reserved for future changes to the deletion system.
237 rev_deleted tinyint(1) unsigned NOT NULL default '0',
238
239 PRIMARY KEY rev_page_id (rev_page, rev_id),
240 UNIQUE INDEX rev_id (rev_id),
241 INDEX rev_timestamp (rev_timestamp),
242 INDEX page_timestamp (rev_page,rev_timestamp),
243 INDEX user_timestamp (rev_user,rev_timestamp),
244 INDEX usertext_timestamp (rev_user_text,rev_timestamp)
245
246 ) TYPE=InnoDB;
247
248
249 --
250 -- Holds text of individual page revisions.
251 --
252 -- Field names are a holdover from the 'old' revisions table in
253 -- MediaWiki 1.4 and earlier: an upgrade will transform that
254 -- table into the 'text' table to minimize unnecessary churning
255 -- and downtime. If upgrading, the other fields will be left unused.
256 --
257 CREATE TABLE /*$wgDBprefix*/text (
258 -- Unique text storage key number.
259 -- Note that the 'oldid' parameter used in URLs does *not*
260 -- refer to this number anymore, but to rev_id.
261 old_id int(8) unsigned NOT NULL auto_increment,
262
263 -- Depending on the contents of the old_flags field, the text
264 -- may be convenient plain text, or it may be funkily encoded.
265 old_text mediumtext NOT NULL default '',
266
267 -- Comma-separated list of flags:
268 -- gzip: text is compressed with PHP's gzdeflate() function.
269 -- utf8: text was stored as UTF-8.
270 -- If $wgLegacyEncoding option is on, rows *without* this flag
271 -- will be converted to UTF-8 transparently at load time.
272 -- object: text field contained a serialized PHP object.
273 -- The object either contains multiple versions compressed
274 -- together to achieve a better compression ratio, or it refers
275 -- to another row where the text can be found.
276 old_flags tinyblob NOT NULL default '',
277
278 PRIMARY KEY old_id (old_id)
279
280 ) TYPE=InnoDB;
281
282 --
283 -- Holding area for deleted articles, which may be viewed
284 -- or restored by admins through the Special:Undelete interface.
285 -- The fields generally correspond to the page, revision, and text
286 -- fields, with several caveats.
287 --
288 CREATE TABLE /*$wgDBprefix*/archive (
289 ar_namespace int NOT NULL default '0',
290 ar_title varchar(255) binary NOT NULL default '',
291
292 -- Newly deleted pages will not store text in this table,
293 -- but will reference the separately existing text rows.
294 -- This field is retained for backwards compatibility,
295 -- so old archived pages will remain accessible after
296 -- upgrading from 1.4 to 1.5.
297 ar_text mediumtext NOT NULL default '',
298
299 -- Basic revision stuff...
300 ar_comment tinyblob NOT NULL default '',
301 ar_user int(5) unsigned NOT NULL default '0',
302 ar_user_text varchar(255) binary NOT NULL,
303 ar_timestamp char(14) binary NOT NULL default '',
304 ar_minor_edit tinyint(1) NOT NULL default '0',
305
306 -- See ar_text note.
307 ar_flags tinyblob NOT NULL default '',
308
309 -- When revisions are deleted, their unique rev_id is stored
310 -- here so it can be retained after undeletion. This is necessary
311 -- to retain permalinks to given revisions after accidental delete
312 -- cycles or messy operations like history merges.
313 --
314 -- Old entries from 1.4 will be NULL here, and a new rev_id will
315 -- be created on undeletion for those revisions.
316 ar_rev_id int(8) unsigned,
317
318 -- For newly deleted revisions, this is the text.old_id key to the
319 -- actual stored text. To avoid breaking the block-compression scheme
320 -- and otherwise making storage changes harder, the actual text is
321 -- *not* deleted from the text table, merely hidden by removal of the
322 -- page and revision entries.
323 --
324 -- Old entries deleted under 1.2-1.4 will have NULL here, and their
325 -- ar_text and ar_flags fields will be used to create a new text
326 -- row upon undeletion.
327 ar_text_id int(8) unsigned,
328
329 KEY name_title_timestamp (ar_namespace,ar_title,ar_timestamp)
330
331 ) TYPE=InnoDB;
332
333 --
334 -- Track links within the wiki that do exist.
335 -- These rows must be removed when the target page is
336 -- deleted, and replaced with brokenlinks entries.
337 -- They must also be updated if a target page is renamed.
338 --
339 CREATE TABLE /*$wgDBprefix*/links (
340 -- Key to the page_id of the page containing the link.
341 l_from int(8) unsigned NOT NULL default '0',
342
343 -- Key to the page_id of the link target.
344 -- An unfortunate consequence of this is that rename
345 -- operations require changing the links entries for
346 -- all links to the moved page.
347 l_to int(8) unsigned NOT NULL default '0',
348
349 UNIQUE KEY l_from(l_from,l_to),
350 KEY (l_to)
351
352 ) TYPE=InnoDB;
353
354 --
355 -- Track links to pages that don't yet exist.
356 -- These rows must be removed when the target page
357 -- is created, and replaced with links table entries.
358 --
359 CREATE TABLE /*$wgDBprefix*/brokenlinks (
360 -- Key to the page_id of the page containing the link.
361 bl_from int(8) unsigned NOT NULL default '0',
362
363 -- Text of the target page title ("namesapce:title").
364 -- Unfortunately this doesn't split the namespace index
365 -- key and therefore can't easily be joined to anything.
366 bl_to varchar(255) binary NOT NULL default '',
367 UNIQUE KEY bl_from(bl_from,bl_to),
368 KEY (bl_to)
369
370 ) TYPE=InnoDB;
371
372 --
373 -- Track links to images *used inline*
374 -- We don't distinguish live from broken links here, so
375 -- they do not need to be changed on upload/removal.
376 --
377 CREATE TABLE /*$wgDBprefix*/imagelinks (
378 -- Key to page_id of the page containing the image / media link.
379 il_from int(8) unsigned NOT NULL default '0',
380
381 -- Filename of target image.
382 -- This is also the page_title of the file's description page;
383 -- all such pages are in namespace 6 (NS_IMAGE).
384 il_to varchar(255) binary NOT NULL default '',
385
386 UNIQUE KEY il_from(il_from,il_to),
387 KEY (il_to)
388
389 ) TYPE=InnoDB;
390
391 --
392 -- Track category inclusions *used inline*
393 -- This tracks a single level of category membership
394 -- (folksonomic tagging, really).
395 --
396 CREATE TABLE /*$wgDBprefix*/categorylinks (
397 -- Key to page_id of the page defined as a category member.
398 cl_from int(8) unsigned NOT NULL default '0',
399
400 -- Name of the category.
401 -- This is also the page_title of the category's description page;
402 -- all such pages are in namespace 14 (NS_CATEGORY).
403 cl_to varchar(255) binary NOT NULL default '',
404
405 -- The title of the linking page, or an optional override
406 -- to determine sort order. Sorting is by binary order, which
407 -- isn't always ideal, but collations seem to be an exciting
408 -- and dangerous new world in MySQL...
409 cl_sortkey varchar(255) binary NOT NULL default '',
410
411 -- This isn't really used at present. Provided for an optional
412 -- sorting method by approximate addition time.
413 cl_timestamp timestamp NOT NULL,
414
415 UNIQUE KEY cl_from(cl_from,cl_to),
416
417 -- This key is trouble. It's incomplete, AND it's too big
418 -- when collation is set to UTF-8. Bleeeacch!
419 KEY cl_sortkey(cl_to,cl_sortkey(128)),
420
421 -- Not really used?
422 KEY cl_timestamp(cl_to,cl_timestamp)
423
424 ) TYPE=InnoDB;
425
426 --
427 -- Stores (possibly gzipped) serialized objects with
428 -- cache arrays to reduce database load slurping up
429 -- from links and brokenlinks.
430 --
431 CREATE TABLE /*$wgDBprefix*/linkscc (
432 lcc_pageid INT UNSIGNED NOT NULL UNIQUE KEY,
433 lcc_cacheobj MEDIUMBLOB NOT NULL
434
435 ) TYPE=InnoDB;
436
437 --
438 -- Contains a single row with some aggregate info
439 -- on the state of the site.
440 --
441 CREATE TABLE /*$wgDBprefix*/site_stats (
442 -- The single row should contain 1 here.
443 ss_row_id int(8) unsigned NOT NULL,
444
445 -- Total number of page views, if hit counters are enabled.
446 ss_total_views bigint(20) unsigned default '0',
447
448 -- Total number of edits performed.
449 ss_total_edits bigint(20) unsigned default '0',
450
451 -- An approximate count of pages matching the following criteria:
452 -- * in namespace 0
453 -- * not a redirect
454 -- * contains the text '[['
455 ss_good_articles bigint(20) unsigned default '0',
456
457 UNIQUE KEY ss_row_id (ss_row_id)
458
459 ) TYPE=InnoDB;
460
461 --
462 -- Stores an ID for every time any article is visited;
463 -- depending on $wgHitcounterUpdateFreq, it is
464 -- periodically cleared and the cur_counter column
465 -- in the cur table updated for the all articles
466 -- that have been visited.)
467 --
468 CREATE TABLE /*$wgDBprefix*/hitcounter (
469 hc_id INTEGER UNSIGNED NOT NULL
470 ) TYPE=HEAP MAX_ROWS=25000;
471
472
473 --
474 -- The internet is full of jerks, alas. Sometimes it's handy
475 -- to block a vandal or troll account.
476 --
477 CREATE TABLE /*$wgDBprefix*/ipblocks (
478 -- Primary key, introduced for privacy.
479 ipb_id int(8) NOT NULL auto_increment,
480
481 -- Blocked IP address in dotted-quad form or user name.
482 ipb_address varchar(40) binary NOT NULL default '',
483
484 -- Blocked user ID or 0 for IP blocks.
485 ipb_user int(8) unsigned NOT NULL default '0',
486
487 -- User ID who made the block.
488 ipb_by int(8) unsigned NOT NULL default '0',
489
490 -- Text comment made by blocker.
491 ipb_reason tinyblob NOT NULL default '',
492
493 -- Creation (or refresh) date in standard YMDHMS form.
494 -- IP blocks expire automatically.
495 ipb_timestamp char(14) binary NOT NULL default '',
496
497 -- Indicates that the IP address was banned because a banned
498 -- user accessed a page through it. If this is 1, ipb_address
499 -- will be hidden, and the block identified by block ID number.
500 ipb_auto tinyint(1) NOT NULL default '0',
501
502 -- Time at which the block will expire.
503 ipb_expiry char(14) binary NOT NULL default '',
504
505 PRIMARY KEY ipb_id (ipb_id),
506 INDEX ipb_address (ipb_address),
507 INDEX ipb_user (ipb_user)
508
509 ) TYPE=InnoDB;
510
511
512 --
513 -- Uploaded images and other files.
514 --
515 CREATE TABLE /*$wgDBprefix*/image (
516 -- Filename.
517 -- This is also the title of the associated description page,
518 -- which will be in namespace 6 (NS_IMAGE).
519 img_name varchar(255) binary NOT NULL default '',
520
521 -- File size in bytes.
522 img_size int(8) unsigned NOT NULL default '0',
523
524 -- For images, size in pixels.
525 img_width int(5) NOT NULL default '0',
526 img_height int(5) NOT NULL default '0',
527
528 -- Extracted EXIF metadata stored as a serialized PHP array.
529 img_metadata mediumblob NOT NULL,
530
531 -- For images, bits per pixel if known.
532 img_bits int(3) NOT NULL default '0',
533
534 -- File type key returned by getimagesize().
535 -- See http://www.php.net/getimagesize for possible values.
536 img_type int(3) NOT NULL default '0',
537
538 -- Description field as entered by the uploader.
539 -- This is displayed in image upload history and logs.
540 img_description tinyblob NOT NULL default '',
541
542 -- user_id and user_name of uploader.
543 img_user int(5) unsigned NOT NULL default '0',
544 img_user_text varchar(255) binary NOT NULL default '',
545
546 -- Time of the upload.
547 img_timestamp char(14) binary NOT NULL default '',
548
549 PRIMARY KEY img_name (img_name),
550
551 -- Used by Special:Imagelist for sort-by-size
552 INDEX img_size (img_size),
553
554 -- Used by Special:Newimages and Special:Imagelist
555 INDEX img_timestamp (img_timestamp)
556
557 ) TYPE=InnoDB;
558
559 --
560 -- Previous revisions of uploaded files.
561 -- Awkwardly, image rows have to be moved into
562 -- this table at re-upload time.
563 --
564 CREATE TABLE /*$wgDBprefix*/oldimage (
565 -- Base filename: key to image.img_name
566 oi_name varchar(255) binary NOT NULL default '',
567
568 -- Filename of the archived file.
569 -- This is generally a timestamp and '!' prepended to the base name.
570 oi_archive_name varchar(255) binary NOT NULL default '',
571
572 -- Other fields as in image...
573 oi_size int(8) unsigned NOT NULL default 0,
574 oi_width int(5) NOT NULL default 0,
575 oi_height int(5) NOT NULL default 0,
576 oi_bits int(3) NOT NULL default 0,
577 oi_type int(3) NOT NULL default 0,
578 oi_description tinyblob NOT NULL default '',
579 oi_user int(5) unsigned NOT NULL default '0',
580 oi_user_text varchar(255) binary NOT NULL default '',
581 oi_timestamp char(14) binary NOT NULL default '',
582
583 INDEX oi_name (oi_name(10))
584
585 ) TYPE=InnoDB;
586
587
588 --
589 -- Primarily a summary table for Special:Recentchanges,
590 -- this table contains some additional info on edits from
591 -- the last few days.
592 --
593 CREATE TABLE /*$wgDBprefix*/recentchanges (
594 rc_id int(8) NOT NULL auto_increment,
595 rc_timestamp varchar(14) binary NOT NULL default '',
596 rc_cur_time varchar(14) binary NOT NULL default '',
597
598 -- As in revision
599 rc_user int(10) unsigned NOT NULL default '0',
600 rc_user_text varchar(255) binary NOT NULL default '',
601
602 -- When pages are renamed, their RC entries do _not_ change.
603 rc_namespace int NOT NULL default '0',
604 rc_title varchar(255) binary NOT NULL default '',
605
606 -- as in revision...
607 rc_comment varchar(255) binary NOT NULL default '',
608 rc_minor tinyint(3) unsigned NOT NULL default '0',
609
610 -- Edits by user accounts with the 'bot' rights key are
611 -- marked with a 1 here, and will be hidden from the
612 -- default view.
613 rc_bot tinyint(3) unsigned NOT NULL default '0',
614
615 rc_new tinyint(3) unsigned NOT NULL default '0',
616
617 -- Key to page_id (was cur_id prior to 1.5).
618 -- This will keep links working after moves while
619 -- retaining the at-the-time name in the changes list.
620 rc_cur_id int(10) unsigned NOT NULL default '0',
621
622 -- rev_id of the given revision
623 rc_this_oldid int(10) unsigned NOT NULL default '0',
624
625 -- rev_id of the prior revision, for generating diff links.
626 rc_last_oldid int(10) unsigned NOT NULL default '0',
627
628 -- These may no longer be used, with the new move log.
629 rc_type tinyint(3) unsigned NOT NULL default '0',
630 rc_moved_to_ns tinyint(3) unsigned NOT NULL default '0',
631 rc_moved_to_title varchar(255) binary NOT NULL default '',
632
633 -- If the Recent Changes Patrol option is enabled,
634 -- users may mark edits as having been reviewed to
635 -- remove a warning flag on the RC list.
636 -- A value of 1 indicates the page has been reviewed.
637 rc_patrolled tinyint(3) unsigned NOT NULL default '0',
638
639 -- Recorded IP address the edit was made from, if the
640 -- $wgPutIPinRC option is enabled.
641 rc_ip char(15) NOT NULL default '',
642
643 PRIMARY KEY rc_id (rc_id),
644 INDEX rc_timestamp (rc_timestamp),
645 INDEX rc_namespace_title (rc_namespace, rc_title),
646 INDEX rc_cur_id (rc_cur_id),
647 INDEX new_name_timestamp(rc_new,rc_namespace,rc_timestamp),
648 INDEX rc_ip (rc_ip)
649
650 ) TYPE=InnoDB;
651
652 CREATE TABLE /*$wgDBprefix*/watchlist (
653 -- Key to user_id
654 wl_user int(5) unsigned NOT NULL,
655
656 -- Key to page_namespace/page_title
657 -- Note that users may watch patches which do not exist yet,
658 -- or existed in the past but have been deleted.
659 wl_namespace int NOT NULL default '0',
660 wl_title varchar(255) binary NOT NULL default '',
661
662 -- Timestamp when user was last sent a notification e-mail;
663 -- cleared when the user visits the page.
664 -- FIXME: add proper null support etc
665 wl_notificationtimestamp varchar(14) binary NOT NULL default '0',
666
667 UNIQUE KEY (wl_user, wl_namespace, wl_title),
668 KEY namespace_title (wl_namespace,wl_title)
669
670 ) TYPE=InnoDB;
671
672
673 --
674 -- Used by texvc math-rendering extension to keep track
675 -- of previously-rendered items.
676 --
677 CREATE TABLE /*$wgDBprefix*/math (
678 -- Binary MD5 hash of the latex fragment, used as an identifier key.
679 math_inputhash varchar(16) NOT NULL,
680
681 -- Not sure what this is, exactly...
682 math_outputhash varchar(16) NOT NULL,
683
684 -- texvc reports how well it thinks the HTML conversion worked;
685 -- if it's a low level the PNG rendering may be preferred.
686 math_html_conservativeness tinyint(1) NOT NULL,
687
688 -- HTML output from texvc, if any
689 math_html text,
690
691 -- MathML output from texvc, if any
692 math_mathml text,
693
694 UNIQUE KEY math_inputhash (math_inputhash)
695
696 ) TYPE=InnoDB;
697
698 --
699 -- When using the default MySQL search backend, page titles
700 -- and text are munged to strip markup, do Unicode case folding,
701 -- and prepare the result for MySQL's fulltext index.
702 --
703 -- This table must be MyISAM; InnoDB does not support the needed
704 -- fulltext index.
705 --
706 CREATE TABLE /*$wgDBprefix*/searchindex (
707 -- Key to page_id
708 si_page int(8) unsigned NOT NULL,
709
710 -- Munged version of title
711 si_title varchar(255) NOT NULL default '',
712
713 -- Munged version of body text
714 si_text mediumtext NOT NULL default '',
715
716 UNIQUE KEY (si_page),
717 FULLTEXT si_title (si_title),
718 FULLTEXT si_text (si_text)
719
720 ) TYPE=MyISAM;
721
722 --
723 -- Recognized interwiki link prefixes
724 --
725 CREATE TABLE /*$wgDBprefix*/interwiki (
726 -- The interwiki prefix, (e.g. "Meatball", or the language prefix "de")
727 iw_prefix char(32) NOT NULL,
728
729 -- The URL of the wiki, with "$1" as a placeholder for an article name.
730 -- Any spaces in the name will be transformed to underscores before
731 -- insertion.
732 iw_url char(127) NOT NULL,
733
734 -- A boolean value indicating whether the wiki is in this project
735 -- (used, for example, to detect redirect loops)
736 iw_local BOOL NOT NULL,
737
738 UNIQUE KEY iw_prefix (iw_prefix)
739
740 ) TYPE=InnoDB;
741
742 --
743 -- Used for caching expensive grouped queries
744 --
745 CREATE TABLE /*$wgDBprefix*/querycache (
746 -- A key name, generally the base name of of the special page.
747 qc_type char(32) NOT NULL,
748
749 -- Some sort of stored value. Sizes, counts...
750 qc_value int(5) unsigned NOT NULL default '0',
751
752 -- Target namespace+title
753 qc_namespace int NOT NULL default '0',
754 qc_title char(255) binary NOT NULL default '',
755
756 KEY (qc_type,qc_value)
757
758 ) TYPE=InnoDB;
759
760 --
761 -- For a few generic cache operations if not using Memcached
762 --
763 CREATE TABLE /*$wgDBprefix*/objectcache (
764 keyname char(255) binary not null default '',
765 value mediumblob,
766 exptime datetime,
767 unique key (keyname),
768 key (exptime)
769
770 ) TYPE=InnoDB;
771
772 -- For article validation
773 CREATE TABLE /*$wgDBprefix*/validate (
774 `val_user` int(11) NOT NULL default '0',
775 `val_page` int(11) unsigned NOT NULL default '0',
776 `val_revision` int(11) unsigned NOT NULL default '0',
777 `val_type` int(11) unsigned NOT NULL default '0',
778 `val_value` int(11) default '0',
779 `val_comment` varchar(255) NOT NULL default '',
780 KEY `val_user` (`val_user`,`val_revision`)
781 ) TYPE=InnoDB;
782
783
784 CREATE TABLE /*$wgDBprefix*/logging (
785 -- Symbolic keys for the general log type and the action type
786 -- within the log. The output format will be controlled by the
787 -- action field, but only the type controls categorization.
788 log_type char(10) NOT NULL default '',
789 log_action char(10) NOT NULL default '',
790
791 -- Timestamp. Duh.
792 log_timestamp char(14) NOT NULL default '19700101000000',
793
794 -- The user who performed this action; key to user_id
795 log_user int unsigned NOT NULL default 0,
796
797 -- Key to the page affected. Where a user is the target,
798 -- this will point to the user page.
799 log_namespace int NOT NULL default 0,
800 log_title varchar(255) binary NOT NULL default '',
801
802 -- Freeform text. Interpreted as edit history comments.
803 log_comment varchar(255) NOT NULL default '',
804
805 -- LF separated list of miscellaneous parameters
806 log_params blob NOT NULL default '',
807
808 KEY type_time (log_type, log_timestamp),
809 KEY user_time (log_user, log_timestamp),
810 KEY page_time (log_namespace, log_title, log_timestamp)
811
812 ) TYPE=InnoDB;
813
814
815
816
817
818 -- Hold group name and description
819 CREATE TABLE /*$wgDBprefix*/`group` (
820 group_id int(5) unsigned NOT NULL auto_increment,
821 group_name varchar(50) NOT NULL default '',
822 group_description varchar(255) NOT NULL default '',
823 group_rights tinyblob,
824 PRIMARY KEY (group_id)
825
826 ) TYPE=InnoDB;
827
828 -- Relation table between user and groups
829 CREATE TABLE /*$wgDBprefix*/user_groups (
830 ug_user int(5) unsigned NOT NULL default '0',
831 ug_group int(5) unsigned NOT NULL default '0',
832 PRIMARY KEY (ug_user,ug_group)
833
834 ) TYPE=InnoDB;