X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/3cc8ad871fc62723dbb9879a004a2af49d21bfef..f97b07787db5cacc0f90338fdb3c1237262917cb:/SL/DB/MetaSetup/AccTrans.pm?ds=inline diff --git a/SL/DB/MetaSetup/AccTrans.pm b/SL/DB/MetaSetup/AccTrans.pm new file mode 100644 index 000000000..8fcedbc15 --- /dev/null +++ b/SL/DB/MetaSetup/AccTrans.pm @@ -0,0 +1,50 @@ +# This file has been auto-generated. Do not modify it; it will be overwritten +# by rose_auto_create_model.pl automatically. +package SL::DB::AccTrans; + +use strict; + +use base qw(SL::DB::Object); + +__PACKAGE__->meta->setup( + table => 'acc_trans', + + columns => [ + acc_trans_id => { type => 'bigint', sequence => 'acc_trans_id_seq' }, + trans_id => { type => 'integer', not_null => 1 }, + chart_id => { type => 'integer', not_null => 1 }, + amount => { type => 'numeric', precision => 5, scale => 15 }, + transdate => { type => 'date', default => 'now' }, + gldate => { type => 'date', default => 'now' }, + source => { type => 'text' }, + cleared => { type => 'boolean', default => 'false' }, + fx_transaction => { type => 'boolean', default => 'false' }, + ob_transaction => { type => 'boolean', default => 'false' }, + cb_transaction => { type => 'boolean', default => 'false' }, + project_id => { type => 'integer' }, + memo => { type => 'text' }, + taxkey => { type => 'integer' }, + itime => { type => 'timestamp', default => 'now()' }, + mtime => { type => 'timestamp' }, + id => { type => 'integer', not_null => 1, sequence => 'acc_trans_id_seq1' }, + ], + + primary_key_columns => [ 'id' ], + + allow_inline_column_values => 1, + + foreign_keys => [ + chart => { + class => 'SL::DB::Chart', + key_columns => { chart_id => 'id' }, + }, + + project => { + class => 'SL::DB::Project', + key_columns => { project_id => 'id' }, + }, + ], +); + +1; +;