X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/ff159a4d47b9a2d10744dcfc23da2c63605c8a32..eeb5375ee7727c956cc357cc8f90b19d1bfe80b9:/SL/DB/MetaSetup/BankAccount.pm diff --git a/SL/DB/MetaSetup/BankAccount.pm b/SL/DB/MetaSetup/BankAccount.pm index d8367789f..738b3f1da 100644 --- a/SL/DB/MetaSetup/BankAccount.pm +++ b/SL/DB/MetaSetup/BankAccount.pm @@ -19,11 +19,13 @@ __PACKAGE__->meta->columns( id => { type => 'integer', not_null => 1, sequence => 'id' }, name => { type => 'text' }, obsolete => { type => 'boolean', default => 'false', not_null => 1 }, + qr_iban => { type => 'text' }, reconciliation_starting_balance => { type => 'numeric', precision => 15, scale => 5 }, reconciliation_starting_date => { type => 'date' }, sortkey => { type => 'integer', not_null => 1 }, use_for_qrbill => { type => 'boolean', default => 'false', not_null => 1 }, use_for_zugferd => { type => 'boolean', default => 'false', not_null => 1 }, + use_with_bank_import => { type => 'boolean', default => 'true', not_null => 1 }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]);