]> scripts.mit.edu Git - autoinstallsdev/mediawiki.git/blob - maintenance/tables.sql
MediaWiki 1.14.0-scripts
[autoinstallsdev/mediawiki.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 BINARY or VARBINARY 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 Postgres 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 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. See the User::newFromName() for
58   -- the specific tests that usernames have to pass.
59   user_name varchar(255) binary NOT NULL default '',
60   
61   -- Optional 'real name' to be displayed in credit listings
62   user_real_name varchar(255) binary NOT NULL default '',
63   
64   -- Password hashes, normally hashed like so:
65   -- MD5(CONCAT(user_id,'-',MD5(plaintext_password))), see
66   -- wfEncryptPassword() in GlobalFunctions.php
67   user_password tinyblob NOT NULL,
68   
69   -- When using 'mail me a new password', a random
70   -- password is generated and the hash stored here.
71   -- The previous password is left in place until
72   -- someone actually logs in with the new password,
73   -- at which point the hash is moved to user_password
74   -- and the old password is invalidated.
75   user_newpassword tinyblob NOT NULL,
76   
77   -- Timestamp of the last time when a new password was
78   -- sent, for throttling purposes
79   user_newpass_time binary(14),
80
81   -- Note: email should be restricted, not public info.
82   -- Same with passwords.
83   user_email tinytext NOT NULL,
84   
85   -- Newline-separated list of name=value defining the user
86   -- preferences
87   user_options blob NOT NULL,
88   
89   -- This is a timestamp which is updated when a user
90   -- logs in, logs out, changes preferences, or performs
91   -- some other action requiring HTML cache invalidation
92   -- to ensure that the UI is updated.
93   user_touched binary(14) NOT NULL default '',
94   
95   -- A pseudorandomly generated value that is stored in
96   -- a cookie when the "remember password" feature is
97   -- used (previously, a hash of the password was used, but
98   -- this was vulnerable to cookie-stealing attacks)
99   user_token binary(32) NOT NULL default '',
100   
101   -- Initially NULL; when a user's e-mail address has been
102   -- validated by returning with a mailed token, this is
103   -- set to the current timestamp.
104   user_email_authenticated binary(14),
105   
106   -- Randomly generated token created when the e-mail address
107   -- is set and a confirmation test mail sent.
108   user_email_token binary(32),
109   
110   -- Expiration date for the user_email_token
111   user_email_token_expires binary(14),
112   
113   -- Timestamp of account registration.
114   -- Accounts predating this schema addition may contain NULL.
115   user_registration binary(14),
116   
117   -- Count of edits and edit-like actions.
118   --
119   -- *NOT* intended to be an accurate copy of COUNT(*) WHERE rev_user=user_id
120   -- May contain NULL for old accounts if batch-update scripts haven't been
121   -- run, as well as listing deleted edits and other myriad ways it could be
122   -- out of sync.
123   --
124   -- Meant primarily for heuristic checks to give an impression of whether
125   -- the account has been used much.
126   --
127   user_editcount int,
128
129   PRIMARY KEY user_id (user_id),
130   UNIQUE INDEX user_name (user_name),
131   INDEX (user_email_token)
132
133 ) /*$wgDBTableOptions*/;
134
135 --
136 -- User permissions have been broken out to a separate table;
137 -- this allows sites with a shared user table to have different
138 -- permissions assigned to a user in each project.
139 --
140 -- This table replaces the old user_rights field which used a
141 -- comma-separated blob.
142 --
143 CREATE TABLE /*$wgDBprefix*/user_groups (
144   -- Key to user_id
145   ug_user int unsigned NOT NULL default '0',
146   
147   -- Group names are short symbolic string keys.
148   -- The set of group names is open-ended, though in practice
149   -- only some predefined ones are likely to be used.
150   --
151   -- At runtime $wgGroupPermissions will associate group keys
152   -- with particular permissions. A user will have the combined
153   -- permissions of any group they're explicitly in, plus
154   -- the implicit '*' and 'user' groups.
155   ug_group varbinary(16) NOT NULL default '',
156   
157   PRIMARY KEY (ug_user,ug_group),
158   KEY (ug_group)
159 ) /*$wgDBTableOptions*/;
160
161 -- Stores notifications of user talk page changes, for the display
162 -- of the "you have new messages" box
163 CREATE TABLE /*$wgDBprefix*/user_newtalk (
164   -- Key to user.user_id
165   user_id int NOT NULL default '0',
166   -- If the user is an anonymous user their IP address is stored here
167   -- since the user_id of 0 is ambiguous
168   user_ip varbinary(40) NOT NULL default '',
169   -- The highest timestamp of revisions of the talk page viewed
170   -- by this user
171   user_last_timestamp binary(14) NOT NULL default '',
172   INDEX user_id (user_id),
173   INDEX user_ip (user_ip)
174
175 ) /*$wgDBTableOptions*/;
176
177
178 --
179 -- Core of the wiki: each page has an entry here which identifies
180 -- it by title and contains some essential metadata.
181 --
182 CREATE TABLE /*$wgDBprefix*/page (
183   -- Unique identifier number. The page_id will be preserved across
184   -- edits and rename operations, but not deletions and recreations.
185   page_id int unsigned NOT NULL auto_increment,
186   
187   -- A page name is broken into a namespace and a title.
188   -- The namespace keys are UI-language-independent constants,
189   -- defined in includes/Defines.php
190   page_namespace int NOT NULL,
191   
192   -- The rest of the title, as text.
193   -- Spaces are transformed into underscores in title storage.
194   page_title varchar(255) binary NOT NULL,
195   
196   -- Comma-separated set of permission keys indicating who
197   -- can move or edit the page.
198   page_restrictions tinyblob NOT NULL,
199   
200   -- Number of times this page has been viewed.
201   page_counter bigint unsigned NOT NULL default '0',
202   
203   -- 1 indicates the article is a redirect.
204   page_is_redirect tinyint unsigned NOT NULL default '0',
205   
206   -- 1 indicates this is a new entry, with only one edit.
207   -- Not all pages with one edit are new pages.
208   page_is_new tinyint unsigned NOT NULL default '0',
209   
210   -- Random value between 0 and 1, used for Special:Randompage
211   page_random real unsigned NOT NULL,
212   
213   -- This timestamp is updated whenever the page changes in
214   -- a way requiring it to be re-rendered, invalidating caches.
215   -- Aside from editing this includes permission changes,
216   -- creation or deletion of linked pages, and alteration
217   -- of contained templates.
218   page_touched binary(14) NOT NULL default '',
219
220   -- Handy key to revision.rev_id of the current revision.
221   -- This may be 0 during page creation, but that shouldn't
222   -- happen outside of a transaction... hopefully.
223   page_latest int unsigned NOT NULL,
224   
225   -- Uncompressed length in bytes of the page's current source text.
226   page_len int unsigned NOT NULL,
227
228   PRIMARY KEY page_id (page_id),
229   UNIQUE INDEX name_title (page_namespace,page_title),
230   
231   -- Special-purpose indexes
232   INDEX (page_random),
233   INDEX (page_len)
234
235 ) /*$wgDBTableOptions*/;
236
237 --
238 -- Every edit of a page creates also a revision row.
239 -- This stores metadata about the revision, and a reference
240 -- to the text storage backend.
241 --
242 CREATE TABLE /*$wgDBprefix*/revision (
243   rev_id int unsigned NOT NULL auto_increment,
244   
245   -- Key to page_id. This should _never_ be invalid.
246   rev_page int unsigned NOT NULL,
247   
248   -- Key to text.old_id, where the actual bulk text is stored.
249   -- It's possible for multiple revisions to use the same text,
250   -- for instance revisions where only metadata is altered
251   -- or a rollback to a previous version.
252   rev_text_id int unsigned NOT NULL,
253   
254   -- Text comment summarizing the change.
255   -- This text is shown in the history and other changes lists,
256   -- rendered in a subset of wiki markup by Linker::formatComment()
257   rev_comment tinyblob NOT NULL,
258   
259   -- Key to user.user_id of the user who made this edit.
260   -- Stores 0 for anonymous edits and for some mass imports.
261   rev_user int unsigned NOT NULL default '0',
262   
263   -- Text username or IP address of the editor.
264   rev_user_text varchar(255) binary NOT NULL default '',
265   
266   -- Timestamp
267   rev_timestamp binary(14) NOT NULL default '',
268   
269   -- Records whether the user marked the 'minor edit' checkbox.
270   -- Many automated edits are marked as minor.
271   rev_minor_edit tinyint unsigned NOT NULL default '0',
272   
273   -- Not yet used; reserved for future changes to the deletion system.
274   rev_deleted tinyint unsigned NOT NULL default '0',
275   
276   -- Length of this revision in bytes
277   rev_len int unsigned,
278
279   -- Key to revision.rev_id
280   -- This field is used to add support for a tree structure (The Adjacency List Model)
281   rev_parent_id int unsigned default NULL,
282
283   PRIMARY KEY rev_page_id (rev_page, rev_id),
284   UNIQUE INDEX rev_id (rev_id),
285   INDEX rev_timestamp (rev_timestamp),
286   INDEX page_timestamp (rev_page,rev_timestamp),
287   INDEX user_timestamp (rev_user,rev_timestamp),
288   INDEX usertext_timestamp (rev_user_text,rev_timestamp)
289
290 ) /*$wgDBTableOptions*/ MAX_ROWS=10000000 AVG_ROW_LENGTH=1024;
291 -- In case tables are created as MyISAM, use row hints for MySQL <5.0 to avoid 4GB limit
292
293 --
294 -- Holds text of individual page revisions.
295 --
296 -- Field names are a holdover from the 'old' revisions table in
297 -- MediaWiki 1.4 and earlier: an upgrade will transform that
298 -- table into the 'text' table to minimize unnecessary churning
299 -- and downtime. If upgrading, the other fields will be left unused.
300 --
301 CREATE TABLE /*$wgDBprefix*/text (
302   -- Unique text storage key number.
303   -- Note that the 'oldid' parameter used in URLs does *not*
304   -- refer to this number anymore, but to rev_id.
305   --
306   -- revision.rev_text_id is a key to this column
307   old_id int unsigned NOT NULL auto_increment,
308   
309   -- Depending on the contents of the old_flags field, the text
310   -- may be convenient plain text, or it may be funkily encoded.
311   old_text mediumblob NOT NULL,
312   
313   -- Comma-separated list of flags:
314   -- gzip: text is compressed with PHP's gzdeflate() function.
315   -- utf8: text was stored as UTF-8.
316   --       If $wgLegacyEncoding option is on, rows *without* this flag
317   --       will be converted to UTF-8 transparently at load time.
318   -- object: text field contained a serialized PHP object.
319   --         The object either contains multiple versions compressed
320   --         together to achieve a better compression ratio, or it refers
321   --         to another row where the text can be found.
322   old_flags tinyblob NOT NULL,
323   
324   PRIMARY KEY old_id (old_id)
325
326 ) /*$wgDBTableOptions*/ MAX_ROWS=10000000 AVG_ROW_LENGTH=10240;
327 -- In case tables are created as MyISAM, use row hints for MySQL <5.0 to avoid 4GB limit
328
329 --
330 -- Holding area for deleted articles, which may be viewed
331 -- or restored by admins through the Special:Undelete interface.
332 -- The fields generally correspond to the page, revision, and text
333 -- fields, with several caveats.
334 --
335 CREATE TABLE /*$wgDBprefix*/archive (
336   ar_namespace int NOT NULL default '0',
337   ar_title varchar(255) binary NOT NULL default '',
338   
339   -- Newly deleted pages will not store text in this table,
340   -- but will reference the separately existing text rows.
341   -- This field is retained for backwards compatibility,
342   -- so old archived pages will remain accessible after
343   -- upgrading from 1.4 to 1.5.
344   -- Text may be gzipped or otherwise funky.
345   ar_text mediumblob NOT NULL,
346   
347   -- Basic revision stuff...
348   ar_comment tinyblob NOT NULL,
349   ar_user int unsigned NOT NULL default '0',
350   ar_user_text varchar(255) binary NOT NULL,
351   ar_timestamp binary(14) NOT NULL default '',
352   ar_minor_edit tinyint NOT NULL default '0',
353   
354   -- See ar_text note.
355   ar_flags tinyblob NOT NULL,
356   
357   -- When revisions are deleted, their unique rev_id is stored
358   -- here so it can be retained after undeletion. This is necessary
359   -- to retain permalinks to given revisions after accidental delete
360   -- cycles or messy operations like history merges.
361   -- 
362   -- Old entries from 1.4 will be NULL here, and a new rev_id will
363   -- be created on undeletion for those revisions.
364   ar_rev_id int unsigned,
365   
366   -- For newly deleted revisions, this is the text.old_id key to the
367   -- actual stored text. To avoid breaking the block-compression scheme
368   -- and otherwise making storage changes harder, the actual text is
369   -- *not* deleted from the text table, merely hidden by removal of the
370   -- page and revision entries.
371   --
372   -- Old entries deleted under 1.2-1.4 will have NULL here, and their
373   -- ar_text and ar_flags fields will be used to create a new text
374   -- row upon undeletion.
375   ar_text_id int unsigned,
376
377   -- rev_deleted for archives
378   ar_deleted tinyint unsigned NOT NULL default '0',
379
380   -- Length of this revision in bytes
381   ar_len int unsigned,
382
383   -- Reference to page_id. Useful for sysadmin fixing of large pages 
384   -- merged together in the archives, or for cleanly restoring a page
385   -- at its original ID number if possible.
386   --
387   -- Will be NULL for pages deleted prior to 1.11.
388   ar_page_id int unsigned,
389   
390   -- Original previous revision
391   ar_parent_id int unsigned default NULL,
392   
393   KEY name_title_timestamp (ar_namespace,ar_title,ar_timestamp),
394   KEY usertext_timestamp (ar_user_text,ar_timestamp)
395
396 ) /*$wgDBTableOptions*/;
397
398
399 --
400 -- Track page-to-page hyperlinks within the wiki.
401 --
402 CREATE TABLE /*$wgDBprefix*/pagelinks (
403   -- Key to the page_id of the page containing the link.
404   pl_from int unsigned NOT NULL default '0',
405   
406   -- Key to page_namespace/page_title of the target page.
407   -- The target page may or may not exist, and due to renames
408   -- and deletions may refer to different page records as time
409   -- goes by.
410   pl_namespace int NOT NULL default '0',
411   pl_title varchar(255) binary NOT NULL default '',
412   
413   UNIQUE KEY pl_from (pl_from,pl_namespace,pl_title),
414   KEY (pl_namespace,pl_title,pl_from)
415
416 ) /*$wgDBTableOptions*/;
417
418
419 --
420 -- Track template inclusions.
421 --
422 CREATE TABLE /*$wgDBprefix*/templatelinks (
423   -- Key to the page_id of the page containing the link.
424   tl_from int unsigned NOT NULL default '0',
425   
426   -- Key to page_namespace/page_title of the target page.
427   -- The target page may or may not exist, and due to renames
428   -- and deletions may refer to different page records as time
429   -- goes by.
430   tl_namespace int NOT NULL default '0',
431   tl_title varchar(255) binary NOT NULL default '',
432   
433   UNIQUE KEY tl_from (tl_from,tl_namespace,tl_title),
434   KEY (tl_namespace,tl_title,tl_from)
435
436 ) /*$wgDBTableOptions*/;
437
438 --
439 -- Track links to images *used inline*
440 -- We don't distinguish live from broken links here, so
441 -- they do not need to be changed on upload/removal.
442 --
443 CREATE TABLE /*$wgDBprefix*/imagelinks (
444   -- Key to page_id of the page containing the image / media link.
445   il_from int unsigned NOT NULL default '0',
446   
447   -- Filename of target image.
448   -- This is also the page_title of the file's description page;
449   -- all such pages are in namespace 6 (NS_FILE).
450   il_to varchar(255) binary NOT NULL default '',
451   
452   UNIQUE KEY il_from (il_from,il_to),
453   KEY (il_to,il_from)
454
455 ) /*$wgDBTableOptions*/;
456
457 --
458 -- Track category inclusions *used inline*
459 -- This tracks a single level of category membership
460 -- (folksonomic tagging, really).
461 --
462 CREATE TABLE /*$wgDBprefix*/categorylinks (
463   -- Key to page_id of the page defined as a category member.
464   cl_from int unsigned NOT NULL default '0',
465   
466   -- Name of the category.
467   -- This is also the page_title of the category's description page;
468   -- all such pages are in namespace 14 (NS_CATEGORY).
469   cl_to varchar(255) binary NOT NULL default '',
470   
471   -- The title of the linking page, or an optional override
472   -- to determine sort order. Sorting is by binary order, which
473   -- isn't always ideal, but collations seem to be an exciting
474   -- and dangerous new world in MySQL... The sortkey is updated
475   -- if no override exists and cl_from is renamed.
476   --
477   -- Truncate so that the cl_sortkey key fits in 1000 bytes 
478   -- (MyISAM 5 with server_character_set=utf8)
479   cl_sortkey varchar(70) binary NOT NULL default '',
480   
481   -- This isn't really used at present. Provided for an optional
482   -- sorting method by approximate addition time.
483   cl_timestamp timestamp NOT NULL,
484   
485   UNIQUE KEY cl_from (cl_from,cl_to),
486   
487   -- We always sort within a given category...
488   KEY cl_sortkey (cl_to,cl_sortkey,cl_from),
489   
490   -- Not really used?
491   KEY cl_timestamp (cl_to,cl_timestamp)
492
493 ) /*$wgDBTableOptions*/;
494
495 -- 
496 -- Track all existing categories.  Something is a category if 1) it has an en-
497 -- try somewhere in categorylinks, or 2) it once did.  Categories might not
498 -- have corresponding pages, so they need to be tracked separately.
499 --
500 CREATE TABLE /*$wgDBprefix*/category (
501   -- Primary key
502   cat_id int unsigned NOT NULL auto_increment,
503
504   -- Name of the category, in the same form as page_title (with underscores).
505   -- If there is a category page corresponding to this category, by definition,
506   -- it has this name (in the Category namespace).
507   cat_title varchar(255) binary NOT NULL,
508
509   -- The numbers of member pages (including categories and media), subcatego-
510   -- ries, and Image: namespace members, respectively.  These are signed to
511   -- make underflow more obvious.  We make the first number include the second
512   -- two for better sorting: subtracting for display is easy, adding for order-
513   -- ing is not.
514   cat_pages int signed NOT NULL default 0,
515   cat_subcats int signed NOT NULL default 0,
516   cat_files int signed NOT NULL default 0,
517
518   -- Reserved for future use
519   cat_hidden tinyint unsigned NOT NULL default 0,
520   
521   PRIMARY KEY (cat_id),
522   UNIQUE KEY (cat_title),
523
524   -- For Special:Mostlinkedcategories
525   KEY (cat_pages)
526 ) /*$wgDBTableOptions*/;
527
528 --
529 -- Track links to external URLs
530 --
531 CREATE TABLE /*$wgDBprefix*/externallinks (
532   -- page_id of the referring page
533   el_from int unsigned NOT NULL default '0',
534
535   -- The URL
536   el_to blob NOT NULL,
537
538   -- In the case of HTTP URLs, this is the URL with any username or password
539   -- removed, and with the labels in the hostname reversed and converted to 
540   -- lower case. An extra dot is added to allow for matching of either
541   -- example.com or *.example.com in a single scan.
542   -- Example: 
543   --      http://user:password@sub.example.com/page.html
544   --   becomes
545   --      http://com.example.sub./page.html
546   -- which allows for fast searching for all pages under example.com with the
547   -- clause: 
548   --      WHERE el_index LIKE 'http://com.example.%'
549   el_index blob NOT NULL,
550   
551   KEY (el_from, el_to(40)),
552   KEY (el_to(60), el_from),
553   KEY (el_index(60))
554 ) /*$wgDBTableOptions*/;
555
556 -- 
557 -- Track interlanguage links
558 --
559 CREATE TABLE /*$wgDBprefix*/langlinks (
560   -- page_id of the referring page
561   ll_from int unsigned NOT NULL default '0',
562   
563   -- Language code of the target
564   ll_lang varbinary(20) NOT NULL default '',
565
566   -- Title of the target, including namespace
567   ll_title varchar(255) binary NOT NULL default '',
568
569   UNIQUE KEY (ll_from, ll_lang),
570   KEY (ll_lang, ll_title)
571 ) /*$wgDBTableOptions*/;
572
573 --
574 -- Contains a single row with some aggregate info
575 -- on the state of the site.
576 --
577 CREATE TABLE /*$wgDBprefix*/site_stats (
578   -- The single row should contain 1 here.
579   ss_row_id int unsigned NOT NULL,
580   
581   -- Total number of page views, if hit counters are enabled.
582   ss_total_views bigint unsigned default '0',
583   
584   -- Total number of edits performed.
585   ss_total_edits bigint unsigned default '0',
586   
587   -- An approximate count of pages matching the following criteria:
588   -- * in namespace 0
589   -- * not a redirect
590   -- * contains the text '[['
591   -- See Article::isCountable() in includes/Article.php
592   ss_good_articles bigint unsigned default '0',
593   
594   -- Total pages, theoretically equal to SELECT COUNT(*) FROM page; except faster
595   ss_total_pages bigint default '-1',
596
597   -- Number of users, theoretically equal to SELECT COUNT(*) FROM user;
598   ss_users bigint default '-1',
599   
600   -- Number of users that still edit
601   ss_active_users bigint default '-1',
602
603   -- Deprecated, no longer updated as of 1.5
604   ss_admins int default '-1',
605
606   -- Number of images, equivalent to SELECT COUNT(*) FROM image
607   ss_images int default '0',
608
609   UNIQUE KEY ss_row_id (ss_row_id)
610
611 ) /*$wgDBTableOptions*/;
612
613 --
614 -- Stores an ID for every time any article is visited;
615 -- depending on $wgHitcounterUpdateFreq, it is
616 -- periodically cleared and the page_counter column
617 -- in the page table updated for the all articles
618 -- that have been visited.)
619 --
620 CREATE TABLE /*$wgDBprefix*/hitcounter (
621   hc_id int unsigned NOT NULL
622 ) ENGINE=HEAP MAX_ROWS=25000;
623
624
625 --
626 -- The internet is full of jerks, alas. Sometimes it's handy
627 -- to block a vandal or troll account.
628 --
629 CREATE TABLE /*$wgDBprefix*/ipblocks (
630   -- Primary key, introduced for privacy.
631   ipb_id int NOT NULL auto_increment,
632   
633   -- Blocked IP address in dotted-quad form or user name.
634   ipb_address tinyblob NOT NULL,
635   
636   -- Blocked user ID or 0 for IP blocks.
637   ipb_user int unsigned NOT NULL default '0',
638   
639   -- User ID who made the block.
640   ipb_by int unsigned NOT NULL default '0',
641   
642   -- User name of blocker
643   ipb_by_text varchar(255) binary NOT NULL default '',
644   
645   -- Text comment made by blocker.
646   ipb_reason tinyblob NOT NULL,
647   
648   -- Creation (or refresh) date in standard YMDHMS form.
649   -- IP blocks expire automatically.
650   ipb_timestamp binary(14) NOT NULL default '',
651   
652   -- Indicates that the IP address was banned because a banned
653   -- user accessed a page through it. If this is 1, ipb_address
654   -- will be hidden, and the block identified by block ID number.
655   ipb_auto bool NOT NULL default 0,
656
657   -- If set to 1, block applies only to logged-out users
658   ipb_anon_only bool NOT NULL default 0,
659
660   -- Block prevents account creation from matching IP addresses
661   ipb_create_account bool NOT NULL default 1,
662
663   -- Block triggers autoblocks
664   ipb_enable_autoblock bool NOT NULL default '1',
665   
666   -- Time at which the block will expire.
667   -- May be "infinity"
668   ipb_expiry varbinary(14) NOT NULL default '',
669   
670   -- Start and end of an address range, in hexadecimal
671   -- Size chosen to allow IPv6
672   ipb_range_start tinyblob NOT NULL,
673   ipb_range_end tinyblob NOT NULL,
674
675   -- Flag for entries hidden from users and Sysops
676   ipb_deleted bool NOT NULL default 0,
677
678   -- Block prevents user from accessing Special:Emailuser
679   ipb_block_email bool NOT NULL default 0,
680   
681   -- Block allows user to edit their own talk page
682   ipb_allow_usertalk bool NOT NULL default 0,
683   
684   PRIMARY KEY ipb_id (ipb_id),
685
686   -- Unique index to support "user already blocked" messages
687   -- Any new options which prevent collisions should be included
688   UNIQUE INDEX ipb_address (ipb_address(255), ipb_user, ipb_auto, ipb_anon_only),
689
690   INDEX ipb_user (ipb_user),
691   INDEX ipb_range (ipb_range_start(8), ipb_range_end(8)),
692   INDEX ipb_timestamp (ipb_timestamp),
693   INDEX ipb_expiry (ipb_expiry)
694
695 ) /*$wgDBTableOptions*/;
696
697
698 --
699 -- Uploaded images and other files.
700 --
701 CREATE TABLE /*$wgDBprefix*/image (
702   -- Filename.
703   -- This is also the title of the associated description page,
704   -- which will be in namespace 6 (NS_FILE).
705   img_name varchar(255) binary NOT NULL default '',
706   
707   -- File size in bytes.
708   img_size int unsigned NOT NULL default '0',
709   
710   -- For images, size in pixels.
711   img_width int NOT NULL default '0',
712   img_height int NOT NULL default '0',
713   
714   -- Extracted EXIF metadata stored as a serialized PHP array.
715   img_metadata mediumblob NOT NULL,
716   
717   -- For images, bits per pixel if known.
718   img_bits int NOT NULL default '0',
719   
720   -- Media type as defined by the MEDIATYPE_xxx constants
721   img_media_type ENUM("UNKNOWN", "BITMAP", "DRAWING", "AUDIO", "VIDEO", "MULTIMEDIA", "OFFICE", "TEXT", "EXECUTABLE", "ARCHIVE") default NULL,
722   
723   -- major part of a MIME media type as defined by IANA
724   -- see http://www.iana.org/assignments/media-types/
725   img_major_mime ENUM("unknown", "application", "audio", "image", "text", "video", "message", "model", "multipart") NOT NULL default "unknown",
726   
727   -- minor part of a MIME media type as defined by IANA
728   -- the minor parts are not required to adher to any standard
729   -- but should be consistent throughout the database
730   -- see http://www.iana.org/assignments/media-types/
731   img_minor_mime varbinary(32) NOT NULL default "unknown",
732   
733   -- Description field as entered by the uploader.
734   -- This is displayed in image upload history and logs.
735   img_description tinyblob NOT NULL,
736   
737   -- user_id and user_name of uploader.
738   img_user int unsigned NOT NULL default '0',
739   img_user_text varchar(255) binary NOT NULL,
740   
741   -- Time of the upload.
742   img_timestamp varbinary(14) NOT NULL default '',
743   
744   -- SHA-1 content hash in base-36
745   img_sha1 varbinary(32) NOT NULL default '',
746
747   PRIMARY KEY img_name (img_name),
748   
749   INDEX img_usertext_timestamp (img_user_text,img_timestamp),
750   -- Used by Special:Imagelist for sort-by-size
751   INDEX img_size (img_size),
752   -- Used by Special:Newimages and Special:Imagelist
753   INDEX img_timestamp (img_timestamp),
754   -- Used in API and duplicate search
755   INDEX img_sha1 (img_sha1)
756
757
758 ) /*$wgDBTableOptions*/;
759
760 --
761 -- Previous revisions of uploaded files.
762 -- Awkwardly, image rows have to be moved into
763 -- this table at re-upload time.
764 --
765 CREATE TABLE /*$wgDBprefix*/oldimage (
766   -- Base filename: key to image.img_name
767   oi_name varchar(255) binary NOT NULL default '',
768   
769   -- Filename of the archived file.
770   -- This is generally a timestamp and '!' prepended to the base name.
771   oi_archive_name varchar(255) binary NOT NULL default '',
772   
773   -- Other fields as in image...
774   oi_size int unsigned NOT NULL default 0,
775   oi_width int NOT NULL default 0,
776   oi_height int NOT NULL default 0,
777   oi_bits int NOT NULL default 0,
778   oi_description tinyblob NOT NULL,
779   oi_user int unsigned NOT NULL default '0',
780   oi_user_text varchar(255) binary NOT NULL,
781   oi_timestamp binary(14) NOT NULL default '',
782
783   oi_metadata mediumblob NOT NULL,
784   oi_media_type ENUM("UNKNOWN", "BITMAP", "DRAWING", "AUDIO", "VIDEO", "MULTIMEDIA", "OFFICE", "TEXT", "EXECUTABLE", "ARCHIVE") default NULL,
785   oi_major_mime ENUM("unknown", "application", "audio", "image", "text", "video", "message", "model", "multipart") NOT NULL default "unknown",
786   oi_minor_mime varbinary(32) NOT NULL default "unknown",
787   oi_deleted tinyint unsigned NOT NULL default '0',
788   oi_sha1 varbinary(32) NOT NULL default '',
789   
790   INDEX oi_usertext_timestamp (oi_user_text,oi_timestamp),
791   INDEX oi_name_timestamp (oi_name,oi_timestamp),
792   -- oi_archive_name truncated to 14 to avoid key length overflow
793   INDEX oi_name_archive_name (oi_name,oi_archive_name(14)),
794   INDEX oi_sha1 (oi_sha1)
795
796 ) /*$wgDBTableOptions*/;
797
798 --
799 -- Record of deleted file data
800 --
801 CREATE TABLE /*$wgDBprefix*/filearchive (
802   -- Unique row id
803   fa_id int NOT NULL auto_increment,
804   
805   -- Original base filename; key to image.img_name, page.page_title, etc
806   fa_name varchar(255) binary NOT NULL default '',
807   
808   -- Filename of archived file, if an old revision
809   fa_archive_name varchar(255) binary default '',
810   
811   -- Which storage bin (directory tree or object store) the file data
812   -- is stored in. Should be 'deleted' for files that have been deleted;
813   -- any other bin is not yet in use.
814   fa_storage_group varbinary(16),
815   
816   -- SHA-1 of the file contents plus extension, used as a key for storage.
817   -- eg 8f8a562add37052a1848ff7771a2c515db94baa9.jpg
818   --
819   -- If NULL, the file was missing at deletion time or has been purged
820   -- from the archival storage.
821   fa_storage_key varbinary(64) default '',
822   
823   -- Deletion information, if this file is deleted.
824   fa_deleted_user int,
825   fa_deleted_timestamp binary(14) default '',
826   fa_deleted_reason text,
827   
828   -- Duped fields from image
829   fa_size int unsigned default '0',
830   fa_width int default '0',
831   fa_height int default '0',
832   fa_metadata mediumblob,
833   fa_bits int default '0',
834   fa_media_type ENUM("UNKNOWN", "BITMAP", "DRAWING", "AUDIO", "VIDEO", "MULTIMEDIA", "OFFICE", "TEXT", "EXECUTABLE", "ARCHIVE") default NULL,
835   fa_major_mime ENUM("unknown", "application", "audio", "image", "text", "video", "message", "model", "multipart") default "unknown",
836   fa_minor_mime varbinary(32) default "unknown",
837   fa_description tinyblob,
838   fa_user int unsigned default '0',
839   fa_user_text varchar(255) binary,
840   fa_timestamp binary(14) default '',
841
842   -- Visibility of deleted revisions, bitfield
843   fa_deleted tinyint unsigned NOT NULL default '0',
844   
845   PRIMARY KEY (fa_id),
846   INDEX (fa_name, fa_timestamp),             -- pick out by image name
847   INDEX (fa_storage_group, fa_storage_key),  -- pick out dupe files
848   INDEX (fa_deleted_timestamp),              -- sort by deletion time
849   INDEX fa_user_timestamp (fa_user_text,fa_timestamp) -- sort by uploader
850
851 ) /*$wgDBTableOptions*/;
852
853 --
854 -- Primarily a summary table for Special:Recentchanges,
855 -- this table contains some additional info on edits from
856 -- the last few days, see Article::editUpdates()
857 --
858 CREATE TABLE /*$wgDBprefix*/recentchanges (
859   rc_id int NOT NULL auto_increment,
860   rc_timestamp varbinary(14) NOT NULL default '',
861   rc_cur_time varbinary(14) NOT NULL default '',
862   
863   -- As in revision
864   rc_user int unsigned NOT NULL default '0',
865   rc_user_text varchar(255) binary NOT NULL,
866   
867   -- When pages are renamed, their RC entries do _not_ change.
868   rc_namespace int NOT NULL default '0',
869   rc_title varchar(255) binary NOT NULL default '',
870   
871   -- as in revision...
872   rc_comment varchar(255) binary NOT NULL default '',
873   rc_minor tinyint unsigned NOT NULL default '0',
874   
875   -- Edits by user accounts with the 'bot' rights key are
876   -- marked with a 1 here, and will be hidden from the
877   -- default view.
878   rc_bot tinyint unsigned NOT NULL default '0',
879   
880   rc_new tinyint unsigned NOT NULL default '0',
881   
882   -- Key to page_id (was cur_id prior to 1.5).
883   -- This will keep links working after moves while
884   -- retaining the at-the-time name in the changes list.
885   rc_cur_id int unsigned NOT NULL default '0',
886   
887   -- rev_id of the given revision
888   rc_this_oldid int unsigned NOT NULL default '0',
889   
890   -- rev_id of the prior revision, for generating diff links.
891   rc_last_oldid int unsigned NOT NULL default '0',
892   
893   -- These may no longer be used, with the new move log.
894   rc_type tinyint unsigned NOT NULL default '0',
895   rc_moved_to_ns tinyint unsigned NOT NULL default '0',
896   rc_moved_to_title varchar(255) binary NOT NULL default '',
897   
898   -- If the Recent Changes Patrol option is enabled,
899   -- users may mark edits as having been reviewed to
900   -- remove a warning flag on the RC list.
901   -- A value of 1 indicates the page has been reviewed.
902   rc_patrolled tinyint unsigned NOT NULL default '0',
903   
904   -- Recorded IP address the edit was made from, if the
905   -- $wgPutIPinRC option is enabled.
906   rc_ip varbinary(40) NOT NULL default '',
907   
908   -- Text length in characters before
909   -- and after the edit
910   rc_old_len int,
911   rc_new_len int,
912
913   -- Visibility of recent changes items, bitfield
914   rc_deleted tinyint unsigned NOT NULL default '0',
915
916   -- Value corresonding to log_id, specific log entries
917   rc_logid int unsigned NOT NULL default '0',
918   -- Store log type info here, or null
919   rc_log_type varbinary(255) NULL default NULL,
920   -- Store log action or null
921   rc_log_action varbinary(255) NULL default NULL,
922   -- Log params
923   rc_params blob NULL,
924   
925   PRIMARY KEY rc_id (rc_id),
926   INDEX rc_timestamp (rc_timestamp),
927   INDEX rc_namespace_title (rc_namespace, rc_title),
928   INDEX rc_cur_id (rc_cur_id),
929   INDEX new_name_timestamp (rc_new,rc_namespace,rc_timestamp),
930   INDEX rc_ip (rc_ip),
931   INDEX rc_ns_usertext (rc_namespace, rc_user_text),
932   INDEX rc_user_text (rc_user_text, rc_timestamp)
933
934 ) /*$wgDBTableOptions*/;
935
936 CREATE TABLE /*$wgDBprefix*/watchlist (
937   -- Key to user.user_id
938   wl_user int unsigned NOT NULL,
939   
940   -- Key to page_namespace/page_title
941   -- Note that users may watch pages which do not exist yet,
942   -- or existed in the past but have been deleted.
943   wl_namespace int NOT NULL default '0',
944   wl_title varchar(255) binary NOT NULL default '',
945   
946   -- Timestamp when user was last sent a notification e-mail;
947   -- cleared when the user visits the page.
948   wl_notificationtimestamp varbinary(14),
949   
950   UNIQUE KEY (wl_user, wl_namespace, wl_title),
951   KEY namespace_title (wl_namespace, wl_title)
952
953 ) /*$wgDBTableOptions*/;
954
955
956 --
957 -- Used by the math module to keep track
958 -- of previously-rendered items.
959 --
960 CREATE TABLE /*$wgDBprefix*/math (
961   -- Binary MD5 hash of the latex fragment, used as an identifier key.
962   math_inputhash varbinary(16) NOT NULL,
963   
964   -- Not sure what this is, exactly...
965   math_outputhash varbinary(16) NOT NULL,
966   
967   -- texvc reports how well it thinks the HTML conversion worked;
968   -- if it's a low level the PNG rendering may be preferred.
969   math_html_conservativeness tinyint NOT NULL,
970   
971   -- HTML output from texvc, if any
972   math_html text,
973   
974   -- MathML output from texvc, if any
975   math_mathml text,
976   
977   UNIQUE KEY math_inputhash (math_inputhash)
978
979 ) /*$wgDBTableOptions*/;
980
981 --
982 -- When using the default MySQL search backend, page titles
983 -- and text are munged to strip markup, do Unicode case folding,
984 -- and prepare the result for MySQL's fulltext index.
985 --
986 -- This table must be MyISAM; InnoDB does not support the needed
987 -- fulltext index.
988 --
989 CREATE TABLE /*$wgDBprefix*/searchindex (
990   -- Key to page_id
991   si_page int unsigned NOT NULL,
992   
993   -- Munged version of title
994   si_title varchar(255) NOT NULL default '',
995   
996   -- Munged version of body text
997   si_text mediumtext NOT NULL,
998   
999   UNIQUE KEY (si_page),
1000   FULLTEXT si_title (si_title),
1001   FULLTEXT si_text (si_text)
1002
1003 ) ENGINE=MyISAM;
1004
1005 --
1006 -- Recognized interwiki link prefixes
1007 --
1008 CREATE TABLE /*$wgDBprefix*/interwiki (
1009   -- The interwiki prefix, (e.g. "Meatball", or the language prefix "de")
1010   iw_prefix varchar(32) NOT NULL,
1011   
1012   -- The URL of the wiki, with "$1" as a placeholder for an article name.
1013   -- Any spaces in the name will be transformed to underscores before
1014   -- insertion.
1015   iw_url blob NOT NULL,
1016   
1017   -- A boolean value indicating whether the wiki is in this project
1018   -- (used, for example, to detect redirect loops)
1019   iw_local bool NOT NULL,
1020   
1021   -- Boolean value indicating whether interwiki transclusions are allowed.
1022   iw_trans tinyint NOT NULL default 0,
1023   
1024   UNIQUE KEY iw_prefix (iw_prefix)
1025
1026 ) /*$wgDBTableOptions*/;
1027
1028 --
1029 -- Used for caching expensive grouped queries
1030 --
1031 CREATE TABLE /*$wgDBprefix*/querycache (
1032   -- A key name, generally the base name of of the special page.
1033   qc_type varbinary(32) NOT NULL,
1034   
1035   -- Some sort of stored value. Sizes, counts...
1036   qc_value int unsigned NOT NULL default '0',
1037   
1038   -- Target namespace+title
1039   qc_namespace int NOT NULL default '0',
1040   qc_title varchar(255) binary NOT NULL default '',
1041   
1042   KEY (qc_type,qc_value)
1043
1044 ) /*$wgDBTableOptions*/;
1045
1046 --
1047 -- For a few generic cache operations if not using Memcached
1048 --
1049 CREATE TABLE /*$wgDBprefix*/objectcache (
1050   keyname varbinary(255) NOT NULL default '',
1051   value mediumblob,
1052   exptime datetime,
1053   PRIMARY KEY (keyname),
1054   KEY (exptime)
1055
1056 ) /*$wgDBTableOptions*/;
1057
1058 --
1059 -- Cache of interwiki transclusion
1060 --
1061 CREATE TABLE /*$wgDBprefix*/transcache (
1062   tc_url varbinary(255) NOT NULL,
1063   tc_contents text,
1064   tc_time int NOT NULL,
1065   UNIQUE INDEX tc_url_idx (tc_url)
1066 ) /*$wgDBTableOptions*/;
1067
1068 CREATE TABLE /*$wgDBprefix*/logging (
1069   -- Log ID, for referring to this specific log entry, probably for deletion and such.
1070   log_id int unsigned NOT NULL auto_increment,
1071
1072   -- Symbolic keys for the general log type and the action type
1073   -- within the log. The output format will be controlled by the
1074   -- action field, but only the type controls categorization.
1075   log_type varbinary(10) NOT NULL default '',
1076   log_action varbinary(10) NOT NULL default '',
1077   
1078   -- Timestamp. Duh.
1079   log_timestamp binary(14) NOT NULL default '19700101000000',
1080   
1081   -- The user who performed this action; key to user_id
1082   log_user int unsigned NOT NULL default 0,
1083   
1084   -- Key to the page affected. Where a user is the target,
1085   -- this will point to the user page.
1086   log_namespace int NOT NULL default 0,
1087   log_title varchar(255) binary NOT NULL default '',
1088   
1089   -- Freeform text. Interpreted as edit history comments.
1090   log_comment varchar(255) NOT NULL default '',
1091   
1092   -- LF separated list of miscellaneous parameters
1093   log_params blob NOT NULL,
1094
1095   -- rev_deleted for logs
1096   log_deleted tinyint unsigned NOT NULL default '0',
1097
1098   PRIMARY KEY log_id (log_id),
1099   KEY type_time (log_type, log_timestamp),
1100   KEY user_time (log_user, log_timestamp),
1101   KEY page_time (log_namespace, log_title, log_timestamp),
1102   KEY times (log_timestamp)
1103
1104 ) /*$wgDBTableOptions*/;
1105
1106 CREATE TABLE /*$wgDBprefix*/trackbacks (
1107   tb_id int auto_increment,
1108   tb_page int REFERENCES /*$wgDBprefix*/page(page_id) ON DELETE CASCADE,
1109   tb_title varchar(255) NOT NULL,
1110   tb_url blob NOT NULL,
1111   tb_ex text,
1112   tb_name varchar(255),
1113
1114   PRIMARY KEY (tb_id),
1115   INDEX (tb_page)
1116 ) /*$wgDBTableOptions*/;
1117
1118
1119 -- Jobs performed by parallel apache threads or a command-line daemon
1120 CREATE TABLE /*$wgDBprefix*/job (
1121   job_id int unsigned NOT NULL auto_increment,
1122   
1123   -- Command name
1124   -- Limited to 60 to prevent key length overflow
1125   job_cmd varbinary(60) NOT NULL default '',
1126
1127   -- Namespace and title to act on
1128   -- Should be 0 and '' if the command does not operate on a title
1129   job_namespace int NOT NULL,
1130   job_title varchar(255) binary NOT NULL,
1131
1132   -- Any other parameters to the command
1133   -- Presently unused, format undefined
1134   job_params blob NOT NULL,
1135
1136   PRIMARY KEY job_id (job_id),
1137   KEY (job_cmd, job_namespace, job_title)
1138 ) /*$wgDBTableOptions*/;
1139
1140
1141 -- Details of updates to cached special pages
1142 CREATE TABLE /*$wgDBprefix*/querycache_info (
1143
1144   -- Special page name
1145   -- Corresponds to a qc_type value
1146   qci_type varbinary(32) NOT NULL default '',
1147
1148   -- Timestamp of last update
1149   qci_timestamp binary(14) NOT NULL default '19700101000000',
1150
1151   UNIQUE KEY ( qci_type )
1152
1153 ) /*$wgDBTableOptions*/;
1154
1155 -- For each redirect, this table contains exactly one row defining its target
1156 CREATE TABLE /*$wgDBprefix*/redirect (
1157   -- Key to the page_id of the redirect page
1158   rd_from int unsigned NOT NULL default '0',
1159
1160   -- Key to page_namespace/page_title of the target page.
1161   -- The target page may or may not exist, and due to renames
1162   -- and deletions may refer to different page records as time
1163   -- goes by.
1164   rd_namespace int NOT NULL default '0',
1165   rd_title varchar(255) binary NOT NULL default '',
1166
1167   PRIMARY KEY rd_from (rd_from),
1168   KEY rd_ns_title (rd_namespace,rd_title,rd_from)
1169 ) /*$wgDBTableOptions*/;
1170
1171 -- Used for caching expensive grouped queries that need two links (for example double-redirects)
1172 CREATE TABLE /*$wgDBprefix*/querycachetwo (
1173   -- A key name, generally the base name of of the special page.
1174   qcc_type varbinary(32) NOT NULL,
1175   
1176   -- Some sort of stored value. Sizes, counts...
1177   qcc_value int unsigned NOT NULL default '0',
1178   
1179   -- Target namespace+title
1180   qcc_namespace int NOT NULL default '0',
1181   qcc_title varchar(255) binary NOT NULL default '',
1182   
1183   -- Target namespace+title2
1184   qcc_namespacetwo int NOT NULL default '0',
1185   qcc_titletwo varchar(255) binary NOT NULL default '',
1186
1187   KEY qcc_type (qcc_type,qcc_value),
1188   KEY qcc_title (qcc_type,qcc_namespace,qcc_title),
1189   KEY qcc_titletwo (qcc_type,qcc_namespacetwo,qcc_titletwo)
1190
1191 ) /*$wgDBTableOptions*/;
1192
1193 -- Used for storing page restrictions (i.e. protection levels)
1194 CREATE TABLE /*$wgDBprefix*/page_restrictions (
1195   -- Page to apply restrictions to (Foreign Key to page).
1196   pr_page int NOT NULL,
1197   -- The protection type (edit, move, etc)
1198   pr_type varbinary(60) NOT NULL,
1199   -- The protection level (Sysop, autoconfirmed, etc)
1200   pr_level varbinary(60) NOT NULL,
1201   -- Whether or not to cascade the protection down to pages transcluded.
1202   pr_cascade tinyint NOT NULL,
1203   -- Field for future support of per-user restriction.
1204   pr_user int NULL,
1205   -- Field for time-limited protection.
1206   pr_expiry varbinary(14) NULL,
1207   -- Field for an ID for this restrictions row (sort-key for Special:ProtectedPages)
1208   pr_id int unsigned NOT NULL auto_increment,
1209
1210   PRIMARY KEY pr_pagetype (pr_page,pr_type),
1211
1212   UNIQUE KEY pr_id (pr_id),
1213   KEY pr_typelevel (pr_type,pr_level),
1214   KEY pr_level (pr_level),
1215   KEY pr_cascade (pr_cascade)
1216 ) /*$wgDBTableOptions*/;
1217
1218 -- Protected titles - nonexistent pages that have been protected
1219 CREATE TABLE /*$wgDBprefix*/protected_titles (
1220   pt_namespace int NOT NULL,
1221   pt_title varchar(255) binary NOT NULL,
1222   pt_user int unsigned NOT NULL,
1223   pt_reason tinyblob,
1224   pt_timestamp binary(14) NOT NULL,
1225   pt_expiry varbinary(14) NOT NULL default '',
1226   pt_create_perm varbinary(60) NOT NULL,
1227   PRIMARY KEY (pt_namespace,pt_title),
1228   KEY pt_timestamp (pt_timestamp)
1229 ) /*$wgDBTableOptions*/;
1230
1231 -- Name/value pairs indexed by page_id
1232 CREATE TABLE /*$wgDBprefix*/page_props (
1233   pp_page int NOT NULL,
1234   pp_propname varbinary(60) NOT NULL,
1235   pp_value blob NOT NULL,
1236
1237   PRIMARY KEY (pp_page,pp_propname)
1238 ) /*$wgDBTableOptions*/;
1239
1240 -- A table to log updates, one text key row per update.
1241 CREATE TABLE /*$wgDBprefix*/updatelog (
1242   ul_key varchar(255) NOT NULL,
1243   PRIMARY KEY (ul_key)
1244 ) /*$wgDBTableOptions*/;
1245
1246 -- vim: sw=2 sts=2 et