X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FTax.pm;h=7678d5f7ed030f05fd5ddc3bd980cde6ceef1d30;hb=3dc3b056259f35b6fcf6656da6a652c024fee3b5;hp=58161aeff0a8cc1e25dfa9a6e2c5806e61a848fe;hpb=4fd22b569d4436293e0a9d364d7356b5bfc503e5;p=kivitendo-erp.git diff --git a/SL/DB/Tax.pm b/SL/DB/Tax.pm index 58161aeff..7678d5f7e 100644 --- a/SL/DB/Tax.pm +++ b/SL/DB/Tax.pm @@ -1,12 +1,17 @@ -# This file has been auto-generated only because it didn't exist. -# Feel free to modify it at will; it will not be overwritten automatically. - package SL::DB::Tax; use strict; use SL::DB::MetaSetup::Tax; +__PACKAGE__->meta->add_relationships(chart => { type => 'many to one', + class => 'SL::DB::Chart', + column_map => { chart_id => 'id' }, + }, + ); + +__PACKAGE__->meta->initialize; + # Creates get_all, get_all_count, get_all_iterator, delete_all and update_all. __PACKAGE__->meta->make_manager_class;