X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FBankAccount.pm;h=5589ee43d38694b3048179f1a50df2eb0287aea3;hb=a805ddafe2970ba5c07a59d90749fa0c7e24f903;hp=d778138e94cb96e84217f7881a100cf400cf976a;hpb=28fee2e2ebc6746bcfeb47c0318e79789ba1c850;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/BankAccount.pm b/SL/DB/MetaSetup/BankAccount.pm index d778138e9..5589ee43d 100644 --- a/SL/DB/MetaSetup/BankAccount.pm +++ b/SL/DB/MetaSetup/BankAccount.pm @@ -4,7 +4,7 @@ package SL::DB::BankAccount; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('bank_accounts'); @@ -17,10 +17,11 @@ __PACKAGE__->meta->columns( iban => { type => 'varchar', length => 100 }, id => { type => 'integer', not_null => 1, sequence => 'id' }, name => { type => 'text' }, - obsolete => { type => 'boolean' }, + obsolete => { type => 'boolean', default => 'false', not_null => 1 }, reconciliation_starting_balance => { type => 'numeric', precision => 15, scale => 5 }, reconciliation_starting_date => { type => 'date' }, sortkey => { type => 'integer', not_null => 1 }, + use_for_zugferd => { type => 'boolean', default => 'false', not_null => 1 }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]);