diff options
author | ivan <ivan> | 2001-09-26 09:17:06 +0000 |
---|---|---|
committer | ivan <ivan> | 2001-09-26 09:17:06 +0000 |
commit | 8ca6f203e5dae208d7af581d68671fe47c5e1a1a (patch) | |
tree | 1b3abd74d3b2118a3ca059e4b2ad65632f98c5e4 /bin/fs-setup | |
parent | fec5c7b3ffb749ad8658ea6f2366aa5c2be3d3fc (diff) |
add part_pop_local table
Diffstat (limited to 'bin/fs-setup')
-rwxr-xr-x | bin/fs-setup | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/bin/fs-setup b/bin/fs-setup index e7dda8ed7..52a2505e5 100755 --- a/bin/fs-setup +++ b/bin/fs-setup @@ -1,6 +1,6 @@ #!/usr/bin/perl -Tw # -# $Id: fs-setup,v 1.58 2001-09-11 22:20:28 ivan Exp $ +# $Id: fs-setup,v 1.59 2001-09-26 09:17:06 ivan Exp $ #to delay loading dbdef until we're ready BEGIN { $FS::Record::setup_hack = 1; } @@ -611,7 +611,21 @@ sub tables_hash_hack { ], 'primary_key' => 'popnum', 'unique' => [ [] ], - 'index' => [ [] ], + 'index' => [ [ 'state' ] ], + }, + + 'part_pop_local' => { + 'columns' => [ + 'localnum', 'int', '', '', + 'popnum', 'int', '', '', + 'city', 'varchar', 'NULL', $char_d, + 'state', 'char', 'NULL', 2, + 'npa', 'char', '', 3, + 'nxx', 'char', '', 3, + ], + 'primary_key' => 'popnum', + 'unique' => [ [] ], + 'index' => [ [ 'npa', 'nxx' ] ], }, 'svc_acct' => { |