diff options
author | ivan <ivan> | 2002-04-10 08:39:47 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-04-10 08:39:47 +0000 |
commit | fd597aef277c522889a849d78dc7dcae67d00d95 (patch) | |
tree | 5c4e5cea234c89c41834906298d1ba45c2bfdf58 /bin | |
parent | 17544eafba683f48cdc64fef09745d17be9b088a (diff) |
fix mistake in part_pop_local schema (not used by anyone really so no big deal)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/fs-setup | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/fs-setup b/bin/fs-setup index 55edeb6dd..2da0431bb 100755 --- a/bin/fs-setup +++ b/bin/fs-setup @@ -1,6 +1,6 @@ #!/usr/bin/perl -Tw # -# $Id: fs-setup,v 1.85 2002-04-05 23:51:17 ivan Exp $ +# $Id: fs-setup,v 1.86 2002-04-10 08:39:47 ivan Exp $ #to delay loading dbdef until we're ready BEGIN { $FS::Record::setup_hack = 1; } @@ -742,9 +742,9 @@ sub tables_hash_hack { 'npa', 'char', '', 3, 'nxx', 'char', '', 3, ], - 'primary_key' => 'popnum', + 'primary_key' => 'localnum', 'unique' => [ [] ], - 'index' => [ [ 'npa', 'nxx' ] ], + 'index' => [ [ 'npa', 'nxx' ], [ 'popnum' ] ], }, 'svc_acct' => { |