diff options
author | ivan <ivan> | 2002-12-24 22:41:21 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-12-24 22:41:21 +0000 |
commit | ca4988d84148e7d17cffdd84bb6867cbcf271531 (patch) | |
tree | 04bec348a54e7fa9531a549f73316d8b9220a6c4 /bin/fs-setup | |
parent | dcf3808fb38f7d06721430db6a02f622cd4ee0dc (diff) |
optimization for ginourmous numbers of packages for intergate, whew
Diffstat (limited to 'bin/fs-setup')
-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 8e000c4ba..c60181b92 100755 --- a/bin/fs-setup +++ b/bin/fs-setup @@ -1,6 +1,6 @@ #!/usr/bin/perl -Tw # -# $Id: fs-setup,v 1.96.4.5 2002-12-14 12:19:19 steve Exp $ +# $Id: fs-setup,v 1.96.4.6 2002-12-24 22:41:21 ivan Exp $ #to delay loading dbdef until we're ready BEGIN { $FS::Record::setup_hack = 1; } @@ -673,7 +673,7 @@ sub tables_hash_hack { ], 'primary_key' => 'pkgpart', 'unique' => [], - 'index' => [], + 'index' => [ [ 'disabled' ] ], }, # 'part_title' => { @@ -716,7 +716,7 @@ sub tables_hash_hack { ], 'primary_key' => 'svcpart', 'unique' => [], - 'index' => [], + 'index' => [ [ 'disabled' ] ], }, 'part_svc_column' => { |