X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FAccTransaction.pm;h=db89491cf80c7076b27e10ff40881573aa51c4b8;hb=1c127236bd8d41997a8566651e9361623c308aa3;hp=29d5c3534c5319104b74833ce563516c2ee712c2;hpb=357d134d265637fb37ed2cd47da2ce3ef44d015a;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/AccTransaction.pm b/SL/DB/MetaSetup/AccTransaction.pm index 29d5c3534..db89491cf 100644 --- a/SL/DB/MetaSetup/AccTransaction.pm +++ b/SL/DB/MetaSetup/AccTransaction.pm @@ -27,6 +27,7 @@ __PACKAGE__->meta->setup( itime => { type => 'timestamp', default => 'now()' }, mtime => { type => 'timestamp' }, tax_id => { type => 'integer', not_null => 1 }, + chart_link => { type => 'text', not_null => 1 }, ], primary_key_columns => [ 'acc_trans_id' ], @@ -41,6 +42,11 @@ __PACKAGE__->meta->setup( class => 'SL::DB::Project', key_columns => { project_id => 'id' }, }, + + tax => { + class => 'SL::DB::Tax', + key_columns => { tax_id => 'id' }, + }, ], );