summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorivan <ivan>2001-10-15 10:42:29 +0000
committerivan <ivan>2001-10-15 10:42:29 +0000
commita6d3e4dc73803cffad96fd4b6270b2fb5f4b0568 (patch)
treeade2d125ae65a21bf314d6cad84ee2cd4d767218 /bin
parent87b5424ee8f16f824865cd7dbf1efde8da3bd429 (diff)
price plans web gui 1st pass, oh my
Diffstat (limited to 'bin')
-rwxr-xr-xbin/fs-setup6
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/fs-setup b/bin/fs-setup
index edfc5ff1c..96ec2b74b 100755
--- a/bin/fs-setup
+++ b/bin/fs-setup
@@ -1,6 +1,6 @@
#!/usr/bin/perl -Tw
#
-# $Id: fs-setup,v 1.61 2001-10-09 23:10:17 ivan Exp $
+# $Id: fs-setup,v 1.62 2001-10-15 10:42:28 ivan Exp $
#to delay loading dbdef until we're ready
BEGIN { $FS::Record::setup_hack = 1; }
@@ -73,7 +73,7 @@ my($char_d) = 80; #default maxlength for text fields
#my(@date_type) = ( 'timestamp', '', '' );
my(@date_type) = ( 'int', 'NULL', '' );
-my(@perl_type) = ( 'varchar', 'NULL', 255 );
+my(@perl_type) = ( 'varchar', 'NULL', '' );
my @money_type = ( 'decimal', '', '10,2' );
###
@@ -540,6 +540,8 @@ sub tables_hash_hack {
'setup', @perl_type,
'freq', 'int', '', '', #billing frequency (months)
'recur', @perl_type,
+ 'plan', 'varchar', 'NULL', '',
+ 'plandata', 'varchar', 'NULL', '',
],
'primary_key' => 'pkgpart',
'unique' => [ [] ],