Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[kivitendo-erp.git] / SL / DB / MetaSetup / Business.pm
index 243d524..08c2d10 100644 (file)
@@ -4,25 +4,23 @@ package SL::DB::Business;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
-__PACKAGE__->meta->setup(
-  table   => 'business',
+__PACKAGE__->meta->table('business');
 
-  columns => [
-    id                 => { type => 'integer', not_null => 1, sequence => 'id' },
-    description        => { type => 'text' },
-    discount           => { type => 'float', precision => 4 },
-    customernumberinit => { type => 'text' },
-    salesman           => { type => 'boolean', default => 'false' },
-    itime              => { type => 'timestamp', default => 'now()' },
-    mtime              => { type => 'timestamp' },
-  ],
+__PACKAGE__->meta->columns(
+  customernumberinit => { type => 'text' },
+  description        => { type => 'text' },
+  discount           => { type => 'float', precision => 4, scale => 4 },
+  id                 => { type => 'integer', not_null => 1, sequence => 'id' },
+  itime              => { type => 'timestamp', default => 'now()' },
+  mtime              => { type => 'timestamp' },
+  salesman           => { type => 'boolean', default => 'false' },
+);
 
-  primary_key_columns => [ 'id' ],
+__PACKAGE__->meta->primary_key_columns([ 'id' ]);
 
-  allow_inline_column_values => 1,
-);
+__PACKAGE__->meta->allow_inline_column_values(1);
 
 1;
 ;