Revision b8b112a3
Von Sven Schöling vor mehr als 11 Jahren hinzugefügt
SL/DB/MetaSetup/Finanzamt.pm | ||
---|---|---|
6 | 6 |
|
7 | 7 |
use base qw(SL::DB::Object); |
8 | 8 |
|
9 |
__PACKAGE__->meta->setup( |
|
10 |
table => 'finanzamt', |
|
9 |
__PACKAGE__->meta->table('finanzamt'); |
|
11 | 10 |
|
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' ], |
|
11 |
__PACKAGE__->meta->columns( |
|
12 |
fa_land_nr => { type => 'text' }, |
|
13 |
fa_bufa_nr => { type => 'text' }, |
|
14 |
fa_name => { type => 'text' }, |
|
15 |
fa_strasse => { type => 'text' }, |
|
16 |
fa_plz => { type => 'text' }, |
|
17 |
fa_ort => { type => 'text' }, |
|
18 |
fa_telefon => { type => 'text' }, |
|
19 |
fa_fax => { type => 'text' }, |
|
20 |
fa_plz_grosskunden => { type => 'text' }, |
|
21 |
fa_plz_postfach => { type => 'text' }, |
|
22 |
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' }, |
|
32 |
id => { type => 'serial', not_null => 1 }, |
|
37 | 33 |
); |
38 | 34 |
|
35 |
__PACKAGE__->meta->primary_key_columns([ 'id' ]); |
|
36 |
|
|
37 |
# __PACKAGE__->meta->initialize; |
|
38 |
|
|
39 | 39 |
1; |
40 | 40 |
; |
Auch abrufbar als: Unified diff
MetaSetup neu generiert