fa22919386d2080fb9985d88dacb0bf1d8802077
[kivitendo-erp.git] / SL / DB / MetaSetup / Finanzamt.pm
1 # This file has been auto-generated. Do not modify it; it will be overwritten
2 # by rose_auto_create_model.pl automatically.
3 package SL::DB::Finanzamt;
4
5 use strict;
6
7 use base qw(SL::DB::Object);
8
9 __PACKAGE__->meta->setup(
10   table   => 'finanzamt',
11
12   columns => [
13     fa_land_nr           => { type => 'text' },
14     fa_bufa_nr           => { type => 'text' },
15     fa_name              => { type => 'text' },
16     fa_strasse           => { type => 'text' },
17     fa_plz               => { type => 'text' },
18     fa_ort               => { type => 'text' },
19     fa_telefon           => { type => 'text' },
20     fa_fax               => { type => 'text' },
21     fa_plz_grosskunden   => { type => 'text' },
22     fa_plz_postfach      => { type => 'text' },
23     fa_postfach          => { type => 'text' },
24     fa_blz_1             => { type => 'text' },
25     fa_kontonummer_1     => { type => 'text' },
26     fa_bankbezeichnung_1 => { type => 'text' },
27     fa_blz_2             => { type => 'text' },
28     fa_kontonummer_2     => { type => 'text' },
29     fa_bankbezeichnung_2 => { type => 'text' },
30     fa_oeffnungszeiten   => { type => 'text' },
31     fa_email             => { type => 'text' },
32     fa_internet          => { type => 'text' },
33     id                   => { type => 'serial', not_null => 1 },
34   ],
35
36   primary_key_columns => [ 'id' ],
37 );
38
39 1;
40 ;