diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2019-08-05 15:42:43 -0700 | 
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2019-08-05 15:42:43 -0700 | 
| commit | f8ab34b9ef9c25f2a3aaf623f5cee9bcaaa66289 (patch) | |
| tree | b7a220fdad39961a82aeaf9047b29c7495bddb95 /FS | |
| parent | 331c26c10cac36acb6c20ec5487df1cedac4641f (diff) | |
place to track an imported regionid, RT#83146
Diffstat (limited to 'FS')
| -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 56ea72737..bbd89f21e 100644 --- a/FS/FS/Schema.pm +++ b/FS/FS/Schema.pm @@ -5203,10 +5203,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' => {  | 
