diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-01-15 14:36:57 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-01-15 14:36:57 -0800 |
commit | 4b2d8be68ec516a72414aff9ede33aacb50b5026 (patch) | |
tree | 60003c90080c9aa2862a010f08d7b87dfad912d7 | |
parent | b527719318878e876971e02e4ac3bfb892a68dec (diff) |
bulk credit import, RT#26319
-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 db5bad293..5b4ba07b2 100644 --- a/FS/FS/Schema.pm +++ b/FS/FS/Schema.pm @@ -973,11 +973,12 @@ sub tables_hashref { 'commission_agentnum', 'int', 'NULL', '', '', '', # 'commission_salesnum', 'int', 'NULL', '', '', '', # 'commission_pkgnum', 'int', 'NULL', '', '', '', # + 'credbatch', 'varchar', 'NULL', $char_d, '', '', ], 'primary_key' => 'crednum', 'unique' => [], 'index' => [ ['custnum'], ['_date'], ['usernum'], ['eventnum'], - [ 'commission_salesnum' ], + ['commission_salesnum'], ['credbatch'], ], }, |