diff options
author | ivan <ivan> | 2002-02-27 22:39:14 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-02-27 22:39:14 +0000 |
commit | 6a37289c12238d48ea864b8177216ca276b33a40 (patch) | |
tree | 5b19e5b3a4ad47d0ebd19edc9b1694c3baf8b29d /bin/fs-setup | |
parent | 9dacc694c1401117d7e34376aa4916f5a4810cab (diff) |
add status and statustext fields to cust_bill_event
Diffstat (limited to 'bin/fs-setup')
-rwxr-xr-x | bin/fs-setup | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/fs-setup b/bin/fs-setup index 3ad0bbdf6..62c2cd490 100755 --- a/bin/fs-setup +++ b/bin/fs-setup @@ -1,6 +1,6 @@ #!/usr/bin/perl -Tw # -# $Id: fs-setup,v 1.81 2002-02-22 07:50:19 ivan Exp $ +# $Id: fs-setup,v 1.82 2002-02-27 22:39:14 ivan Exp $ #to delay loading dbdef until we're ready BEGIN { $FS::Record::setup_hack = 1; } @@ -329,10 +329,12 @@ sub tables_hash_hack { 'invnum', 'int', '', '', 'eventpart', 'int', '', '', '_date', @date_type, + 'status', 'varchar', '', $char_d, + 'statustext', 'text', 'NULL', '', ], 'primary_key' => 'eventnum', 'unique' => [ [ 'eventpart', 'invnum' ] ], - 'index' => [ ['invnum'] ], + 'index' => [ ['invnum'], ['status'] ], }, 'part_bill_event' => { |