[freeside-commits] branch FREESIDE_4_BRANCH updated. 62520e5d3dee531b49bb759919c18b983c11c337
Ivan Kohler
ivan at freeside.biz
Mon Jul 29 12:04:27 PDT 2019
The branch, FREESIDE_4_BRANCH has been updated
via 62520e5d3dee531b49bb759919c18b983c11c337 (commit)
from 7b73059f9ac27b728c558f48457d4627201fc097 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 62520e5d3dee531b49bb759919c18b983c11c337
Author: Ivan Kohler <ivan at freeside.biz>
Date: Mon Jul 29 12:04:23 2019 -0700
place to track an imported rateid, RT#83146
diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm
index ec3340b71..56ea72737 100644
--- a/FS/FS/Schema.pm
+++ b/FS/FS/Schema.pm
@@ -5133,13 +5133,14 @@ sub tables_hashref {
'rate' => {
'columns' => [
- 'ratenum', 'serial', '', '', '', '',
- 'ratename', 'varchar', '',$char_d, '', '',
- 'agentnum', 'int', 'NULL', '', '', '',
- 'default_detailnum', 'int', 'NULL', '', '', '',
+ 'ratenum', 'serial', '', '', '', '',
+ 'ratename', 'varchar', '', $char_d, '', '',
+ 'agentnum', 'int', 'NULL', '', '', '',
+ 'default_detailnum', 'int', 'NULL', '', '', '',
+ 'agent_rateid', 'varchar', 'NULL', $char_d, '', '',
],
'primary_key' => 'ratenum',
- 'unique' => [],
+ 'unique' => [ ['agentnum','agent_rateid'], ],
'index' => [],
'foreign_keys' => [
{ columns => [ 'agentnum' ],
-----------------------------------------------------------------------
Summary of changes:
FS/FS/Schema.pm | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
More information about the freeside-commits
mailing list