]> wagnertech.de Git - mfinanz.git/blobdiff - SL/DB/MetaSetup/TaxzoneChart.pm
MetaSetup Dateien aktualisiert
[mfinanz.git] / SL / DB / MetaSetup / TaxzoneChart.pm
index 3bcdbceee8505b468f010360e5e9a0ed1c8e8827..d11587a35385bc3ca4a1e8b467877c1e1179222f 100644 (file)
@@ -9,12 +9,12 @@ use base qw(SL::DB::Object);
 __PACKAGE__->meta->table('taxzone_charts');
 
 __PACKAGE__->meta->columns(
-  id                 => { type => 'serial', not_null => 1 },
-  taxzone_id         => { type => 'integer', not_null => 1 },
   buchungsgruppen_id => { type => 'integer', not_null => 1 },
-  income_accno_id    => { type => 'integer', not_null => 1 },
   expense_accno_id   => { type => 'integer', not_null => 1 },
+  id                 => { type => 'serial', not_null => 1 },
+  income_accno_id    => { type => 'integer', not_null => 1 },
   itime              => { type => 'timestamp', default => 'now()' },
+  taxzone_id         => { type => 'integer', not_null => 1 },
 );
 
 __PACKAGE__->meta->primary_key_columns([ 'id' ]);