Warengruppen-Filter f. CVars bei Waren
[kivitendo-erp.git] / SL / DB / MetaSetup / TaxZone.pm
index b294531..5529d89 100644 (file)
@@ -10,7 +10,9 @@ __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' },
+  obsolete    => { type => 'boolean', default => 'false' },
+  sortkey     => { type => 'integer', not_null => 1 },
 );
 
 __PACKAGE__->meta->primary_key_columns([ 'id' ]);