Auftrags-Controller: Zahlungs- und Lieferbedingungen
[kivitendo-erp.git] / SL / DB / MetaSetup / Buchungsgruppe.pm
index b81fb12..fde083a 100644 (file)
@@ -4,12 +4,13 @@ package SL::DB::Buchungsgruppe;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('buchungsgruppen');
 
 __PACKAGE__->meta->columns(
   description        => { type => 'text' },
+  id                 => { type => 'integer', not_null => 1, sequence => 'id' },
   inventory_accno_id => { type => 'integer' },
   sortkey            => { type => 'integer', not_null => 1 },
 );