Steuerzonen und Buchungsgruppen bearbeiten
[kivitendo-erp.git] / SL / DB / MetaSetup / TaxZone.pm
index b294531..993d28f 100644 (file)
@@ -10,7 +10,8 @@ __PACKAGE__->meta->table('tax_zones');
 
 __PACKAGE__->meta->columns(
   description => { type => 'text' },
-  id          => { type => 'integer', not_null => 1 },
+  id          => { type => 'integer', not_null => 1, sequence => 'id' },
+  sortkey     => { type => 'integer', not_null => 1 },
 );
 
 __PACKAGE__->meta->primary_key_columns([ 'id' ]);