X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FFinanzamt.pm;h=cd44abb048dc92b68918e5e665a0069ff7d5aef5;hb=4ee26bcc22fa980555706ca24323ee9c552c1303;hp=6eceffabb6f1316290e447adb12ac039d4bde3f8;hpb=b8b112a39bd601b0bc717646d78de470631da22a;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/Finanzamt.pm b/SL/DB/MetaSetup/Finanzamt.pm index 6eceffabb..cd44abb04 100644 --- a/SL/DB/MetaSetup/Finanzamt.pm +++ b/SL/DB/MetaSetup/Finanzamt.pm @@ -9,32 +9,30 @@ use base qw(SL::DB::Object); __PACKAGE__->meta->table('finanzamt'); __PACKAGE__->meta->columns( - fa_land_nr => { type => 'text' }, + 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_strasse => { type => 'text' }, - fa_plz => { type => 'text' }, + fa_oeffnungszeiten => { type => 'text' }, fa_ort => { type => 'text' }, - fa_telefon => { type => 'text' }, - fa_fax => { type => 'text' }, + fa_plz => { 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' }, + fa_strasse => { type => 'text' }, + fa_telefon => { type => 'text' }, id => { type => 'serial', not_null => 1 }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]); -# __PACKAGE__->meta->initialize; - 1; ;