summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--FS/FS/Schema.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm
index f55956469..8d33f92cf 100644
--- a/FS/FS/Schema.pm
+++ b/FS/FS/Schema.pm
@@ -1681,6 +1681,7 @@ sub tables_hashref {
'weight', 'int', '', '', '', '',
'payby', 'char', '', 4, '', '',
'payinfo', 'varchar', 'NULL', 512, '', '',
+ 'cardtype', 'varchar', 'NULL', $char_d, '', '',
'paycvv', 'varchar', 'NULL', 512, '', '',
'paymask', 'varchar', 'NULL', $char_d, '', '',
#'paydate', @date_type, '', '',
@@ -1848,7 +1849,7 @@ sub tables_hashref {
],
'primary_key' => 'quotationnum',
'unique' => [],
- 'index' => [ [ 'prospectnum' ], ['custnum'], ],
+ 'index' => [ [ 'prospectnum' ], ['custnum'], ['disabled'], ],
'foreign_keys' => [
{ columns => [ 'prospectnum' ],
table => 'prospect_main',