diff options
author | ivan <ivan> | 1998-10-22 15:51:23 +0000 |
---|---|---|
committer | ivan <ivan> | 1998-10-22 15:51:23 +0000 |
commit | 9061feef2e36c8a58a612be0e4e80853715bacb2 (patch) | |
tree | 8f158a4db615063e0a9b019abb0cc5ec6136e2f0 /bin | |
parent | b8f8d9c3a07d4cb18ab6ec49fcd5ee0620c04a24 (diff) |
also varchar with no length specified - postgresql fix broke mysql.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/fs-setup | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/bin/fs-setup b/bin/fs-setup index dc732e5ed..98e754261 100755 --- a/bin/fs-setup +++ b/bin/fs-setup @@ -32,7 +32,10 @@ # fix radius attributes ivan@sisd.com 98-sep-27 # # $Log: fs-setup,v $ -# Revision 1.3 1998-10-22 15:46:28 ivan +# Revision 1.4 1998-10-22 15:51:23 ivan +# also varchar with no length specified - postgresql fix broke mysql. +# +# Revision 1.3 1998/10/22 15:46:28 ivan # now smallint is illegal, so remove that too. # @@ -73,7 +76,7 @@ my($char_d) = 80; #default maxlength for text fields #my(@date_type) = ( 'timestamp', '', '' ); my(@date_type) = ( 'int', 'NULL', '' ); -my(@perl_type) = ( 'varchar', 'NULL', '' ); +my(@perl_type) = ( 'varchar', 'NULL', 255 ); my(@money_type); if (datasrc =~ m/Pg/) { #Pg can't do decimal(10,2) @money_type = ( 'money', '', '' ); |