MetaSetup: Spalten- und Fremdschlüsselnamen alphabetisch sortieren
[kivitendo-erp.git] / SL / DB / MetaSetup / TaxZone.pm
index 0190c63..b294531 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;
 ;