Tabelle parts: Fremdschlüssel für Konten - bessere Namen
[kivitendo-erp.git] / SL / DB / MetaSetup / DeliveryOrderItemsStock.pm
index 4263531..a3f87fb 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::DeliveryOrderItemsStock;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('delivery_order_items_stock');
 
@@ -16,7 +16,7 @@ __PACKAGE__->meta->columns(
   id                     => { type => 'integer', not_null => 1, sequence => 'id' },
   itime                  => { type => 'timestamp', default => 'now()' },
   mtime                  => { type => 'timestamp' },
-  qty                    => { type => 'numeric', not_null => 1, precision => 5, scale => 15 },
+  qty                    => { type => 'numeric', not_null => 1, precision => 15, scale => 5 },
   unit                   => { type => 'varchar', length => 20, not_null => 1 },
   warehouse_id           => { type => 'integer', not_null => 1 },
 );