X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FBankTransactionAccTrans.pm;h=b4ba2e26eeeb5b6f87e78c6007c0f5131a8ac92c;hb=a0b82b1e7a9fab32f162ebee5031913b2f44ed5a;hp=6428c997ea98d861623fb63859216396fff85678;hpb=c77e88d3c1dd8e53079c246e2571259f3ac27627;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/BankTransactionAccTrans.pm b/SL/DB/MetaSetup/BankTransactionAccTrans.pm index 6428c997e..b4ba2e26e 100644 --- a/SL/DB/MetaSetup/BankTransactionAccTrans.pm +++ b/SL/DB/MetaSetup/BankTransactionAccTrans.pm @@ -14,12 +14,11 @@ __PACKAGE__->meta->columns( ar_id => { type => 'integer' }, bank_transaction_id => { type => 'integer', not_null => 1 }, gl_id => { type => 'integer' }, - id => { type => 'serial', not_null => 1 }, itime => { type => 'timestamp', default => 'now()' }, mtime => { type => 'timestamp' }, ); -__PACKAGE__->meta->primary_key_columns([ 'id' ]); +__PACKAGE__->meta->primary_key_columns([ 'bank_transaction_id', 'acc_trans_id' ]); __PACKAGE__->meta->allow_inline_column_values(1);