summaryrefslogtreecommitdiff
path: root/bin/fs-setup
diff options
context:
space:
mode:
authorivan <ivan>1999-02-27 21:06:48 +0000
committerivan <ivan>1999-02-27 21:06:48 +0000
commit532db8ddd43eae7f09200ad25fbc542524f2093d (patch)
tree8a33970101f4f8e802638798bd6f155f247c74e4 /bin/fs-setup
parent510d2f9647c0651a82760e456b46505e8050d6ed (diff)
cust_main.paydate should be varchar(10), not @date_type ; problem reported
by Ben Leibig <leibig@colorado.edu>
Diffstat (limited to 'bin/fs-setup')
-rwxr-xr-xbin/fs-setup11
1 files changed, 8 insertions, 3 deletions
diff --git a/bin/fs-setup b/bin/fs-setup
index f028c6e1d..7a5403b01 100755
--- a/bin/fs-setup
+++ b/bin/fs-setup
@@ -1,6 +1,6 @@
#!/usr/bin/perl -Tw
#
-# $Id: fs-setup,v 1.14 1999-02-07 09:59:14 ivan Exp $
+# $Id: fs-setup,v 1.15 1999-02-27 21:06:21 ivan Exp $
#
# ivan@sisd.com 97-nov-8,9
#
@@ -32,7 +32,11 @@
# fix radius attributes ivan@sisd.com 98-sep-27
#
# $Log: fs-setup,v $
-# Revision 1.14 1999-02-07 09:59:14 ivan
+# Revision 1.15 1999-02-27 21:06:21 ivan
+# cust_main.paydate should be varchar(10), not @date_type ; problem reported
+# by Ben Leibig <leibig@colorado.edu>
+#
+# Revision 1.14 1999/02/07 09:59:14 ivan
# more mod_perl fixes, and bugfixes Peter Wemm sent via email
#
# Revision 1.13 1999/02/04 06:09:23 ivan
@@ -385,7 +389,8 @@ sub tables_hash_hack {
'fax', 'varchar', 'NULL', 12,
'payby', 'char', '', 4,
'payinfo', 'varchar', 'NULL', 16,
- 'paydate', @date_type,
+ #'paydate', @date_type,
+ 'paydate', 'varchar', 'NULL', 10,
'payname', 'varchar', 'NULL', $char_d,
'tax', 'char', 'NULL', 1,
'otaker', 'varchar', '', 8,