Revision a6c89b4e
Von Cem Aydin vor 5 Tagen hinzugefügt
SL/DB/MetaSetup/BankAccount.pm | ||
---|---|---|
19 | 19 |
id => { type => 'integer', not_null => 1, sequence => 'id' }, |
20 | 20 |
name => { type => 'text' }, |
21 | 21 |
obsolete => { type => 'boolean', default => 'false', not_null => 1 }, |
22 |
qr_iban => { type => 'varchar', length => 100 }, |
|
22 | 23 |
reconciliation_starting_balance => { type => 'numeric', precision => 15, scale => 5 }, |
23 | 24 |
reconciliation_starting_date => { type => 'date' }, |
24 | 25 |
sortkey => { type => 'integer', not_null => 1 }, |
sql/Pg-upgrade2/bank_accounts_add_qr_iban.sql | ||
---|---|---|
1 |
-- @tag: bank_accounts_add_qr_iban |
|
2 |
-- @description: Bankkonto Informationen Spalte für QR-IBAN hinzufügen |
|
3 |
-- @depends: release_3_9_0 |
|
4 |
ALTER TABLE bank_accounts ADD COLUMN qr_iban VARCHAR(100); |
Auch abrufbar als: Unified diff
Datenbankupgrade: Bankkonto Informationen Spalte für QR-IBAN hinzufügen (Schweiz)
Bisher haben wir für die QR-IBAN eine zusätzliche Zeile bei den
Bankkonten erfasst. Die QR-IBAN wird aber jeweils als zusätzliche IBAN
für ein existierendes Bankkonto vergeben.
Daher sollte diese stattdessen als zusätzliche Spalte erfasst werden.
Dies ermöglicht dann auch das Buchen auf das entsprechende Konto.