summaryrefslogtreecommitdiff
path: root/maintenance/archives/patch-linktables.sql
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2007-05-16 20:58:53 +0000
committerPierre Schmitz <pierre@archlinux.de>2007-05-16 20:58:53 +0000
commitcecb985bee3bdd252e1b8dc0bd500b37cd52be01 (patch)
tree17266aa237742640aabee7856f0202317a45d540 /maintenance/archives/patch-linktables.sql
parent0bac06c301f2a83edb0236e4c2434da16848d549 (diff)
Aktualisierung auf MediaWiki 1.10.0
Plugins angepasst und verbessert kleine Korrekturen am Design
Diffstat (limited to 'maintenance/archives/patch-linktables.sql')
-rw-r--r--maintenance/archives/patch-linktables.sql8
1 files changed, 4 insertions, 4 deletions
diff --git a/maintenance/archives/patch-linktables.sql b/maintenance/archives/patch-linktables.sql
index bb9bd033..8c521ad9 100644
--- a/maintenance/archives/patch-linktables.sql
+++ b/maintenance/archives/patch-linktables.sql
@@ -16,7 +16,7 @@ CREATE TABLE /*$wgDBprefix*/links (
UNIQUE KEY l_from(l_from,l_to),
KEY (l_to)
-) TYPE=InnoDB;
+) /*$wgDBTableOptions*/;
--
-- Track links to pages that don't yet exist.
@@ -35,7 +35,7 @@ CREATE TABLE /*$wgDBprefix*/brokenlinks (
UNIQUE KEY bl_from(bl_from,bl_to),
KEY (bl_to)
-) TYPE=InnoDB;
+) /*$wgDBTableOptions*/;
--
-- Track links to images *used inline*
@@ -55,7 +55,7 @@ CREATE TABLE /*$wgDBprefix*/imagelinks (
UNIQUE KEY il_from(il_from,il_to),
KEY (il_to)
-) TYPE=InnoDB;
+) /*$wgDBTableOptions*/;
--
-- Stores (possibly gzipped) serialized objects with
@@ -67,4 +67,4 @@ CREATE TABLE /*$wgDBprefix*/linkscc (
lcc_pageid INT UNSIGNED NOT NULL UNIQUE KEY,
lcc_cacheobj MEDIUMBLOB NOT NULL
-) TYPE=InnoDB;
+) /*$wgDBTableOptions*/;