X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/1e62938e10b5c7e9f91b09c53660ccb14e6004a6..67643d0386e7ad051009af639cada8a5ad60d1ea:/SL/DB/MetaSetup/CsvImportReportRow.pm?ds=inline diff --git a/SL/DB/MetaSetup/CsvImportReportRow.pm b/SL/DB/MetaSetup/CsvImportReportRow.pm new file mode 100644 index 000000000..5bc633722 --- /dev/null +++ b/SL/DB/MetaSetup/CsvImportReportRow.pm @@ -0,0 +1,31 @@ +# This file has been auto-generated. Do not modify it; it will be overwritten +# by rose_auto_create_model.pl automatically. +package SL::DB::CsvImportReportRow; + +use strict; + +use base qw(SL::DB::Object); + +__PACKAGE__->meta->setup( + table => 'csv_import_report_rows', + + columns => [ + id => { type => 'serial', not_null => 1 }, + csv_import_report_id => { type => 'integer', not_null => 1 }, + col => { type => 'integer', not_null => 1 }, + row => { type => 'integer', not_null => 1 }, + value => { type => 'text' }, + ], + + primary_key_columns => [ 'id' ], + + foreign_keys => [ + csv_import_report => { + class => 'SL::DB::CsvImportReport', + key_columns => { csv_import_report_id => 'id' }, + }, + ], +); + +1; +;