Lines 105-110
if ( CheckVersion($DBversion) ) {
Link Here
|
105 |
} |
105 |
} |
106 |
); |
106 |
); |
107 |
|
107 |
|
|
|
108 |
# Add any unexpected accounttype codes to debit_types as appropriate |
109 |
$dbh->do( |
110 |
qq{ |
111 |
INSERT IGNORE INTO account_credit_types ( |
112 |
code, |
113 |
description, |
114 |
can_be_added_manually, |
115 |
default_amount, |
116 |
is_system |
117 |
) |
118 |
SELECT |
119 |
SUBSTR(accounttype, 1, 80), |
120 |
"Unexpected type found during upgrade", |
121 |
1, |
122 |
NULL, |
123 |
0 |
124 |
FROM |
125 |
accountlines |
126 |
WHERE |
127 |
amount > 0 |
128 |
} |
129 |
); |
130 |
|
108 |
# Adding debit_type_code to accountlines |
131 |
# Adding debit_type_code to accountlines |
109 |
unless ( column_exists('accountlines', 'debit_type_code') ) { |
132 |
unless ( column_exists('accountlines', 'debit_type_code') ) { |
110 |
$dbh->do( |
133 |
$dbh->do( |
111 |
- |
|
|