]> wagnertech.de Git - kivitendo-erp.git/blobdiff - SL/DB/MetaSetup/TaxZone.pm
Drucken: Variablen in Positionen interpolieren
[kivitendo-erp.git] / SL / DB / MetaSetup / TaxZone.pm
index 993d28f88ab17829a8e56270e9d9aa815289edf5..0ca5fd810b41dd5986ab740b45a2a31341622145 100644 (file)
@@ -4,13 +4,14 @@ package SL::DB::TaxZone;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('tax_zones');
 
 __PACKAGE__->meta->columns(
   description => { type => 'text' },
   id          => { type => 'integer', not_null => 1, sequence => 'id' },
+  obsolete    => { type => 'boolean', default => 'false' },
   sortkey     => { type => 'integer', not_null => 1 },
 );