]> wagnertech.de Git - mfinanz.git/blobdiff - SL/DB/MetaSetup/BankAccount.pm
kivitendo 3.9.2-0.2
[mfinanz.git] / SL / DB / MetaSetup / BankAccount.pm
index d8367789fa96259cbee0b0eccc37a295be5ffade..738b3f1da6c6167504eb6111ce8c21bfea4ae502 100644 (file)
@@ -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' ]);