]> wagnertech.de Git - mfinanz.git/blobdiff - SL/DB/MetaSetup/TaxZone.pm
Email: Kosmetik
[mfinanz.git] / SL / DB / MetaSetup / TaxZone.pm
index 0190c6367a915776dd77c573c319a73f5c95915e..5529d892482f4caa6b5bdda6bf293f37e31e8fca 100644 (file)
@@ -9,13 +9,13 @@ use base qw(SL::DB::Object);
 __PACKAGE__->meta->table('tax_zones');
 
 __PACKAGE__->meta->columns(
 __PACKAGE__->meta->table('tax_zones');
 
 __PACKAGE__->meta->columns(
-  id          => { type => 'integer', not_null => 1 },
   description => { type => 'text' },
   description => { type => 'text' },
+  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' ]);
 
 );
 
 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
 
-# __PACKAGE__->meta->initialize;
-
 1;
 ;
 1;
 ;