]> wagnertech.de Git - kivitendo-erp.git/blobdiff - SL/DB/MetaSetup/TaxZone.pm
Vergessen AuditTrail als DB-Objekt zu löschen
[kivitendo-erp.git] / SL / DB / MetaSetup / TaxZone.pm
index 0190c6367a915776dd77c573c319a73f5c95915e..b294531574a33d01f0a20ea668cc822e501d0f05 100644 (file)
@@ -9,13 +9,11 @@ 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 },
 );
 
 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
 
-# __PACKAGE__->meta->initialize;
-
 1;
 ;