X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/f207efd1ad8835c046c2945c3d0d693626622521..b989d7cfb4bd8de5c3e290b8df0519ad34d5dd0c:/SL/DB/MetaSetup/TaxzoneChart.pm diff --git a/SL/DB/MetaSetup/TaxzoneChart.pm b/SL/DB/MetaSetup/TaxzoneChart.pm new file mode 100644 index 000000000..f0cd6dcf1 --- /dev/null +++ b/SL/DB/MetaSetup/TaxzoneChart.pm @@ -0,0 +1,44 @@ +# This file has been auto-generated. Do not modify it; it will be overwritten +# by rose_auto_create_model.pl automatically. +package SL::DB::TaxzoneChart; + +use strict; + +use base qw(SL::DB::Object); + +__PACKAGE__->meta->table('taxzone_charts'); + +__PACKAGE__->meta->columns( + id => { type => 'serial', not_null => 1 }, + taxzone_id => { type => 'integer', not_null => 1 }, + buchungsgruppen_id => { type => 'integer', not_null => 1 }, + income_accno_id => { type => 'integer', not_null => 1 }, + expense_accno_id => { type => 'integer', not_null => 1 }, + itime => { type => 'timestamp', default => 'now()' }, +); + +__PACKAGE__->meta->primary_key_columns([ 'id' ]); + +__PACKAGE__->meta->allow_inline_column_values(1); + +__PACKAGE__->meta->foreign_keys( + buchungsgruppen => { + class => 'SL::DB::Buchungsgruppe', + key_columns => { buchungsgruppen_id => 'id' }, + }, + + expense_accno => { + class => 'SL::DB::Chart', + key_columns => { expense_accno_id => 'id' }, + }, + + income_accno => { + class => 'SL::DB::Chart', + key_columns => { income_accno_id => 'id' }, + }, +); + +# __PACKAGE__->meta->initialize; + +1; +;