X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/3eb3d1b144adb92e62de08e67dc6ff3d39bf7483..2ecfde54bd40a15f430010faa28ec81383e4eec6:/SL/DB/MetaSetup/AccTransaction.pm 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 },