diff options
-rwxr-xr-x | checksetup.pl | 2 |
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"; } |