diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-01-15 14:36:53 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-01-15 14:36:53 -0800 |
commit | b7c25d5e38e6459efe5d1c2f09f437b79798038e (patch) | |
tree | 8c1c4b3908898fbb84876fd35697a6aaa8935c01 | |
parent | dbc37c25095f050ac6284d399e25b2668fa00609 (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 150a19d95..30a35deb0 100644 --- a/FS/FS/Schema.pm +++ b/FS/FS/Schema.pm @@ -1285,11 +1285,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'], ], 'foreign_keys' => [ { columns => [ 'custnum' ], |