]> wagnertech.de Git - mfinanz.git/blobdiff - SL/DB/MetaSetup/TaxZone.pm
Steuerzonen und Buchungsgruppen bearbeiten
[mfinanz.git] / SL / DB / MetaSetup / TaxZone.pm
index 0190c6367a915776dd77c573c319a73f5c95915e..993d28f88ab17829a8e56270e9d9aa815289edf5 100644 (file)
@@ -9,13 +9,12 @@ use base qw(SL::DB::Object);
 __PACKAGE__->meta->table('tax_zones');
 
 __PACKAGE__->meta->columns(
-  id          => { type => 'integer', not_null => 1 },
   description => { type => 'text' },
+  id          => { type => 'integer', not_null => 1, sequence => 'id' },
+  sortkey     => { type => 'integer', not_null => 1 },
 );
 
 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
 
-# __PACKAGE__->meta->initialize;
-
 1;
 ;