X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FChart.pm;h=993fd0d56370b25ac7ade75b12da2a926642dd49;hb=660c7e5312f7fae7766b731f7001e5e8197c6887;hp=980b2bd5d614a72d78569260f940b53715299025;hpb=b8b112a39bd601b0bc717646d78de470631da22a;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/Chart.pm b/SL/DB/MetaSetup/Chart.pm index 980b2bd5d..993fd0d56 100644 --- a/SL/DB/MetaSetup/Chart.pm +++ b/SL/DB/MetaSetup/Chart.pm @@ -4,25 +4,26 @@ package SL::DB::Chart; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('chart'); __PACKAGE__->meta->columns( - id => { type => 'integer', not_null => 1, sequence => 'id' }, accno => { type => 'text', not_null => 1 }, - description => { type => 'text' }, - charttype => { type => 'character', default => 'A', length => 1 }, category => { type => 'character', length => 1 }, - link => { type => 'text', not_null => 1 }, - taxkey_id => { type => 'integer' }, - pos_bwa => { type => 'integer' }, - pos_bilanz => { type => 'integer' }, - pos_eur => { type => 'integer' }, + charttype => { type => 'character', default => 'A', length => 1 }, datevautomatik => { type => 'boolean', default => 'false' }, + description => { type => 'text' }, + id => { type => 'integer', not_null => 1, sequence => 'id' }, itime => { type => 'timestamp', default => 'now()' }, + link => { type => 'text', not_null => 1 }, mtime => { type => 'timestamp' }, new_chart_id => { type => 'integer' }, + pos_bilanz => { type => 'integer' }, + pos_bwa => { type => 'integer' }, + pos_er => { type => 'integer' }, + pos_eur => { type => 'integer' }, + taxkey_id => { type => 'integer' }, valid_from => { type => 'date' }, ); @@ -32,7 +33,5 @@ __PACKAGE__->meta->unique_keys([ 'accno' ]); __PACKAGE__->meta->allow_inline_column_values(1); -# __PACKAGE__->meta->initialize; - 1; ;