* Added table option variable to the SQL patch files, so now upgrading a non-standard schema won't leave your database horribly corrupted. * Added sql.php, for sourcing SQL files with MediaWiki variable substitution. * Disable MySQL's strict mode at session start for MySQL 4.1+, to avoid the various problems that occur when it is on.
12 lines
265 B
SQL
12 lines
265 B
SQL
--
|
|
-- linkscc table used to cache link lists in easier to digest form
|
|
-- November 2003
|
|
--
|
|
-- Format later updated.
|
|
--
|
|
|
|
CREATE TABLE /*$wgDBprefix*/linkscc (
|
|
lcc_pageid INT UNSIGNED NOT NULL UNIQUE KEY,
|
|
lcc_cacheobj MEDIUMBLOB NOT NULL
|
|
|
|
) /*$wgDBTableOptions*/;
|