X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/3eb3d1b144adb92e62de08e67dc6ff3d39bf7483..c65e8fcc568f54001e277a8d7d8d2bd21cf80f4d:/SL/DB/MetaSetup/Business.pm diff --git a/SL/DB/MetaSetup/Business.pm b/SL/DB/MetaSetup/Business.pm index b522f7c87..64adf69ce 100644 --- a/SL/DB/MetaSetup/Business.pm +++ b/SL/DB/MetaSetup/Business.pm @@ -4,14 +4,14 @@ package SL::DB::Business; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('business'); __PACKAGE__->meta->columns( customernumberinit => { type => 'text' }, description => { type => 'text' }, - discount => { type => 'float', precision => 4 }, + discount => { type => 'float', scale => 4 }, id => { type => 'integer', not_null => 1, sequence => 'id' }, itime => { type => 'timestamp', default => 'now()' }, mtime => { type => 'timestamp' },