Sprache um Attribut ungültig erweitert
[kivitendo-erp.git] / SL / DB / MetaSetup / Finanzamt.pm
index fa22919..cc4d997 100644 (file)
@@ -4,37 +4,35 @@ package SL::DB::Finanzamt;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
-__PACKAGE__->meta->setup(
-  table   => 'finanzamt',
+__PACKAGE__->meta->table('finanzamt');
 
-  columns => [
-    fa_land_nr           => { type => 'text' },
-    fa_bufa_nr           => { type => 'text' },
-    fa_name              => { type => 'text' },
-    fa_strasse           => { type => 'text' },
-    fa_plz               => { type => 'text' },
-    fa_ort               => { type => 'text' },
-    fa_telefon           => { type => 'text' },
-    fa_fax               => { type => 'text' },
-    fa_plz_grosskunden   => { type => 'text' },
-    fa_plz_postfach      => { type => 'text' },
-    fa_postfach          => { type => 'text' },
-    fa_blz_1             => { type => 'text' },
-    fa_kontonummer_1     => { type => 'text' },
-    fa_bankbezeichnung_1 => { type => 'text' },
-    fa_blz_2             => { type => 'text' },
-    fa_kontonummer_2     => { type => 'text' },
-    fa_bankbezeichnung_2 => { type => 'text' },
-    fa_oeffnungszeiten   => { type => 'text' },
-    fa_email             => { type => 'text' },
-    fa_internet          => { type => 'text' },
-    id                   => { type => 'serial', not_null => 1 },
-  ],
-
-  primary_key_columns => [ 'id' ],
+__PACKAGE__->meta->columns(
+  fa_bankbezeichnung_1 => { type => 'text' },
+  fa_bankbezeichnung_2 => { type => 'text' },
+  fa_blz_1             => { type => 'text' },
+  fa_blz_2             => { type => 'text' },
+  fa_bufa_nr           => { type => 'text' },
+  fa_email             => { type => 'text' },
+  fa_fax               => { type => 'text' },
+  fa_internet          => { type => 'text' },
+  fa_kontonummer_1     => { type => 'text' },
+  fa_kontonummer_2     => { type => 'text' },
+  fa_land_nr           => { type => 'text' },
+  fa_name              => { type => 'text' },
+  fa_oeffnungszeiten   => { type => 'text' },
+  fa_ort               => { type => 'text' },
+  fa_plz               => { type => 'text' },
+  fa_plz_grosskunden   => { type => 'text' },
+  fa_plz_postfach      => { type => 'text' },
+  fa_postfach          => { type => 'text' },
+  fa_strasse           => { type => 'text' },
+  fa_telefon           => { type => 'text' },
+  id                   => { type => 'serial', not_null => 1 },
 );
 
+__PACKAGE__->meta->primary_key_columns([ 'id' ]);
+
 1;
 ;