Subject: | Don't multiply by the space char |
--- SQLEngine.pm.bak Mon Mar 15 14:03:58 2004
+++ SQLEngine.pm Mon Mar 15 14:03:55 2004
@@ -1345,7 +1345,7 @@
return "PRIMARY KEY ($name)";
} else {
return ' ' . $name .
- ' ' x ( ( length($name) > 31 ) ? ' ' : ( 32 - length($name) ) ) .
+ ' ' x ( ( length($name) > 31 ) ? 50 : ( 32 - length($name) ) ) .
$type .
( $column->{required} ? " not null" : '' );
}