Projekt

Allgemein

Profil

Herunterladen (1,28 KB) Statistiken
| Zweig: | Markierung: | Revision:
f97b0778 Sven Schöling
# This file has been auto-generated. Do not modify it; it will be overwritten
# by rose_auto_create_model.pl automatically.
package SL::DB::Finanzamt;

use strict;

2ea07c13 Sven Schöling
use parent qw(SL::DB::Object);
f97b0778 Sven Schöling
b8b112a3 Sven Schöling
__PACKAGE__->meta->table('finanzamt');
f97b0778 Sven Schöling
b8b112a3 Sven Schöling
__PACKAGE__->meta->columns(
3eb3d1b1 Moritz Bunkus
fa_bankbezeichnung_1 => { type => 'text' },
fa_bankbezeichnung_2 => { type => 'text' },
fa_blz_1 => { type => 'text' },
fa_blz_2 => { type => 'text' },
b8b112a3 Sven Schöling
fa_bufa_nr => { type => 'text' },
3eb3d1b1 Moritz Bunkus
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' },
b8b112a3 Sven Schöling
fa_name => { type => 'text' },
3eb3d1b1 Moritz Bunkus
fa_oeffnungszeiten => { type => 'text' },
b8b112a3 Sven Schöling
fa_ort => { type => 'text' },
3eb3d1b1 Moritz Bunkus
fa_plz => { type => 'text' },
b8b112a3 Sven Schöling
fa_plz_grosskunden => { type => 'text' },
fa_plz_postfach => { type => 'text' },
fa_postfach => { type => 'text' },
3eb3d1b1 Moritz Bunkus
fa_strasse => { type => 'text' },
fa_telefon => { type => 'text' },
b8b112a3 Sven Schöling
id => { type => 'serial', not_null => 1 },
f97b0778 Sven Schöling
);

b8b112a3 Sven Schöling
__PACKAGE__->meta->primary_key_columns([ 'id' ]);

f97b0778 Sven Schöling
1;
;