Revision 3eb3d1b1
Von Moritz Bunkus vor mehr als 11 Jahren hinzugefügt
SL/DB/MetaSetup/Finanzamt.pm | ||
---|---|---|
9 | 9 |
__PACKAGE__->meta->table('finanzamt'); |
10 | 10 |
|
11 | 11 |
__PACKAGE__->meta->columns( |
12 |
fa_land_nr => { type => 'text' }, |
|
12 |
fa_bankbezeichnung_1 => { type => 'text' }, |
|
13 |
fa_bankbezeichnung_2 => { type => 'text' }, |
|
14 |
fa_blz_1 => { type => 'text' }, |
|
15 |
fa_blz_2 => { type => 'text' }, |
|
13 | 16 |
fa_bufa_nr => { type => 'text' }, |
17 |
fa_email => { type => 'text' }, |
|
18 |
fa_fax => { type => 'text' }, |
|
19 |
fa_internet => { type => 'text' }, |
|
20 |
fa_kontonummer_1 => { type => 'text' }, |
|
21 |
fa_kontonummer_2 => { type => 'text' }, |
|
22 |
fa_land_nr => { type => 'text' }, |
|
14 | 23 |
fa_name => { type => 'text' }, |
15 |
fa_strasse => { type => 'text' }, |
|
16 |
fa_plz => { type => 'text' }, |
|
24 |
fa_oeffnungszeiten => { type => 'text' }, |
|
17 | 25 |
fa_ort => { type => 'text' }, |
18 |
fa_telefon => { type => 'text' }, |
|
19 |
fa_fax => { type => 'text' }, |
|
26 |
fa_plz => { type => 'text' }, |
|
20 | 27 |
fa_plz_grosskunden => { type => 'text' }, |
21 | 28 |
fa_plz_postfach => { type => 'text' }, |
22 | 29 |
fa_postfach => { type => 'text' }, |
23 |
fa_blz_1 => { type => 'text' }, |
|
24 |
fa_kontonummer_1 => { type => 'text' }, |
|
25 |
fa_bankbezeichnung_1 => { type => 'text' }, |
|
26 |
fa_blz_2 => { type => 'text' }, |
|
27 |
fa_kontonummer_2 => { type => 'text' }, |
|
28 |
fa_bankbezeichnung_2 => { type => 'text' }, |
|
29 |
fa_oeffnungszeiten => { type => 'text' }, |
|
30 |
fa_email => { type => 'text' }, |
|
31 |
fa_internet => { type => 'text' }, |
|
30 |
fa_strasse => { type => 'text' }, |
|
31 |
fa_telefon => { type => 'text' }, |
|
32 | 32 |
id => { type => 'serial', not_null => 1 }, |
33 | 33 |
); |
34 | 34 |
|
35 | 35 |
__PACKAGE__->meta->primary_key_columns([ 'id' ]); |
36 | 36 |
|
37 |
# __PACKAGE__->meta->initialize; |
|
38 |
|
|
39 | 37 |
1; |
40 | 38 |
; |
Auch abrufbar als: Unified diff
MetaSetup: Spalten- und Fremdschlüsselnamen alphabetisch sortieren