diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-06-29 15:25:47 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-06-29 15:25:47 -0700 |
commit | 14f73cfb3943afdadd37a5a4d5d765be55832305 (patch) | |
tree | c4fdfa3eae2106ca0204d3e6dbf2ff431d35c178 | |
parent | f5a3514aa0c5b197a7c520205f8103da1363572a (diff) |
add index on prepay_credit.agentnum, RT#29748
-rw-r--r-- | FS/FS/Schema.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm index b70b3518d..c2d959544 100644 --- a/FS/FS/Schema.pm +++ b/FS/FS/Schema.pm @@ -2815,7 +2815,7 @@ sub tables_hashref { ], 'primary_key' => 'prepaynum', 'unique' => [ ['identifier'] ], - 'index' => [], + 'index' => [ ['agentnum'] ], }, 'port' => { |