Zusatzspalten fuer Kontoinhaber
[kivitendo-erp.git] / SL / DB / MetaSetup / Vendor.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::Vendor;
4
5 use strict;
6
7 use base qw(SL::DB::Object);
8
9 __PACKAGE__->meta->table('vendor');
10
11 __PACKAGE__->meta->columns(
12   account_number   => { type => 'varchar', length => 15 },
13   bank             => { type => 'text' },
14   bank_code        => { type => 'varchar', length => 10 },
15   bcc              => { type => 'text' },
16   bic              => { type => 'varchar', length => 100 },
17   business_id      => { type => 'integer' },
18   cc               => { type => 'text' },
19   city             => { type => 'varchar', length => 75 },
20   contact          => { type => 'varchar', length => 75 },
21   country          => { type => 'varchar', length => 75 },
22   creditlimit      => { type => 'numeric', precision => 5, scale => 15 },
23   currency_id      => { type => 'integer', not_null => 1 },
24   delivery_term_id => { type => 'integer' },
25   department_1     => { type => 'varchar', length => 75 },
26   department_2     => { type => 'varchar', length => 75 },
27   depositor        => { type => 'text' },
28   direct_debit     => { type => 'boolean', default => 'false' },
29   discount         => { type => 'float', precision => 4 },
30   email            => { type => 'text' },
31   fax              => { type => 'varchar', length => 30 },
32   greeting         => { type => 'text' },
33   homepage         => { type => 'text' },
34   iban             => { type => 'varchar', length => 100 },
35   id               => { type => 'integer', not_null => 1, sequence => 'id' },
36   itime            => { type => 'timestamp', default => 'now()' },
37   language         => { type => 'varchar', length => 5 },
38   language_id      => { type => 'integer' },
39   mtime            => { type => 'timestamp' },
40   name             => { type => 'varchar', length => 75, not_null => 1 },
41   notes            => { type => 'text' },
42   obsolete         => { type => 'boolean', default => 'false' },
43   payment_id       => { type => 'integer' },
44   phone            => { type => 'text' },
45   salesman_id      => { type => 'integer' },
46   street           => { type => 'varchar', length => 75 },
47   taxincluded      => { type => 'boolean' },
48   taxnumber        => { type => 'text' },
49   taxzone_id       => { type => 'integer', default => '0', not_null => 1 },
50   terms            => { type => 'integer', default => '0' },
51   user_password    => { type => 'varchar', length => 12 },
52   username         => { type => 'varchar', length => 50 },
53   ustid            => { type => 'varchar', length => 14 },
54   v_customer_id    => { type => 'text' },
55   vendornumber     => { type => 'text' },
56   zipcode          => { type => 'varchar', length => 10 },
57 );
58
59 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
60
61 __PACKAGE__->meta->allow_inline_column_values(1);
62
63 __PACKAGE__->meta->foreign_keys(
64   business => {
65     class       => 'SL::DB::Business',
66     key_columns => { business_id => 'id' },
67   },
68
69   currency => {
70     class       => 'SL::DB::Currency',
71     key_columns => { currency_id => 'id' },
72   },
73
74   delivery_term => {
75     class       => 'SL::DB::DeliveryTerm',
76     key_columns => { delivery_term_id => 'id' },
77   },
78
79   language_obj => {
80     class       => 'SL::DB::Language',
81     key_columns => { language_id => 'id' },
82   },
83
84   payment => {
85     class       => 'SL::DB::PaymentTerm',
86     key_columns => { payment_id => 'id' },
87   },
88 );
89
90 1;
91 ;