X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FAccTransaction.pm;h=23a1b17665d011080e98896a360eb80910cce996;hb=ee03d15d22eebae4c5224bd68a23b6b4d8a466c0;hp=ae3f0f65e6c6fe457446a1c73ba7e7c7c99a8676;hpb=3eb3d1b144adb92e62de08e67dc6ff3d39bf7483;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/AccTransaction.pm b/SL/DB/MetaSetup/AccTransaction.pm index ae3f0f65e..23a1b1766 100644 --- a/SL/DB/MetaSetup/AccTransaction.pm +++ b/SL/DB/MetaSetup/AccTransaction.pm @@ -4,13 +4,13 @@ package SL::DB::AccTransaction; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('acc_trans'); __PACKAGE__->meta->columns( acc_trans_id => { type => 'bigint', not_null => 1, sequence => 'acc_trans_id_seq' }, - amount => { type => 'numeric', precision => 5, scale => 15 }, + amount => { type => 'numeric', precision => 15, scale => 5 }, cb_transaction => { type => 'boolean', default => 'false', not_null => 1 }, chart_id => { type => 'integer', not_null => 1 }, chart_link => { type => 'text', not_null => 1 },