diff options
author | Ivan Kohler <ivan@freeside.biz> | 2019-08-05 15:42:40 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2019-08-05 15:42:40 -0700 |
commit | d2a42bce5c5557966cc0f0966e4b9d14fff576a0 (patch) | |
tree | ed55ddb90893e9fd420c3744d72f141a2d9129b6 | |
parent | 51c0d6572357ba4d7c11a11e7ff506428c1cc045 (diff) |
place to track an imported regionid, RT#83146
-rw-r--r-- | FS/FS/Schema.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm index 8a349f7f0..569401b1d 100644 --- a/FS/FS/Schema.pm +++ b/FS/FS/Schema.pm @@ -5317,10 +5317,11 @@ sub tables_hashref { 'regionnum', 'serial', '', '', '', '', 'regionname', 'varchar', '', $char_d, '', '', 'exact_match', 'char', 'NULL', 1, '', '', + 'agent_regionid', 'varchar', 'NULL', $char_d, '', '', ], 'primary_key' => 'regionnum', 'unique' => [], - 'index' => [], + 'index' => [ ['agent_regionid'] ], }, 'rate_prefix' => { |