Commit 40046fe7 authored by jocuri%softhome.net's avatar jocuri%softhome.net

Patch for bug 263165: Make Bugzilla specify table type as MyISAM when creating…

Patch for bug 263165: Make Bugzilla specify table type as MyISAM when creating tables; patch by Byron Jones (glob) <bugzilla@glob.com.au>, r=kiko, a=justdave.
parent 1f6ed9be
......@@ -2076,7 +2076,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";
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment