]> wagnertech.de Git - mfinanz.git/blobdiff - SL/DB/MetaSetup/TaxZone.pm
Steuerzonen ungültig machen
[mfinanz.git] / SL / DB / MetaSetup / TaxZone.pm
index b294531574a33d01f0a20ea668cc822e501d0f05..5529d892482f4caa6b5bdda6bf293f37e31e8fca 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' ]);