summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl
index 6d8090c35..0a5bb6109 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -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";
}