]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Patch for bug 263165: Make Bugzilla specify table type as MyISAM when creating tables...
authorjocuri%softhome.net <>
Sun, 10 Oct 2004 03:21:08 +0000 (03:21 +0000)
committerjocuri%softhome.net <>
Sun, 10 Oct 2004 03:21:08 +0000 (03:21 +0000)
checksetup.pl

index ca92ef22a1d8cd3e3529975b4b81f6d8978e0f76..30167f1975f165d8ecc847297c3c09583d7c945e 100755 (executable)
@@ -2024,7 +2024,7 @@ while (my ($tabname, $fielddef) = each %table) {
     $fielddef =~ s/\$my_opsys/$my_opsys/;
     $fielddef =~ s/\$my_platforms/$my_platforms/;
 
-    $dbh->do("CREATE TABLE $tabname (\n$fielddef\n)")
+    $dbh->do("CREATE TABLE $tabname (\n$fielddef\n) TYPE = MYISAM")
         or die "Could not create table '$tabname'. Please check your '$db_base' access.\n";
 }