Die Datenbankfelder notes_bottom und project_manager_id gibt es in der offiziellen...
[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->setup(
10   table   => 'vendor',
11
12   columns => [
13     id             => { type => 'integer', not_null => 1, sequence => 'id' },
14     name           => { type => 'varchar', length => 75, not_null => 1 },
15     department_1   => { type => 'varchar', length => 75 },
16     department_2   => { type => 'varchar', length => 75 },
17     street         => { type => 'varchar', length => 75 },
18     zipcode        => { type => 'varchar', length => 10 },
19     city           => { type => 'varchar', length => 75 },
20     country        => { type => 'varchar', length => 75 },
21     contact        => { type => 'varchar', length => 75 },
22     phone          => { type => 'varchar', length => 30 },
23     fax            => { type => 'varchar', length => 30 },
24     homepage       => { type => 'text' },
25     email          => { type => 'text' },
26     notes          => { type => 'text' },
27     terms          => { type => 'integer', default => '0' },
28     taxincluded    => { type => 'boolean' },
29     vendornumber   => { type => 'text' },
30     cc             => { type => 'text' },
31     bcc            => { type => 'text' },
32     gifi_accno     => { type => 'text' },
33     business_id    => { type => 'integer' },
34     taxnumber      => { type => 'text' },
35     discount       => { type => 'float', precision => 4 },
36     creditlimit    => { type => 'numeric', precision => 5, scale => 15 },
37     account_number => { type => 'varchar', length => 15 },
38     bank_code      => { type => 'varchar', length => 10 },
39     bank           => { type => 'text' },
40     language       => { type => 'varchar', length => 5 },
41     datevexport    => { type => 'integer' },
42     itime          => { type => 'timestamp', default => 'now()' },
43     mtime          => { type => 'timestamp' },
44     obsolete       => { type => 'boolean', default => 'false' },
45     username       => { type => 'varchar', length => 50 },
46     user_password  => { type => 'varchar', length => 12 },
47     salesman_id    => { type => 'integer' },
48     v_customer_id  => { type => 'text' },
49     language_id    => { type => 'integer' },
50     payment_id     => { type => 'integer' },
51     taxzone_id     => { type => 'integer', default => '0', not_null => 1 },
52     greeting       => { type => 'text' },
53     ustid          => { type => 'varchar', length => 14 },
54     direct_debit   => { type => 'boolean', default => 'false' },
55     iban           => { type => 'varchar', length => 100 },
56     bic            => { type => 'varchar', length => 100 },
57   ],
58
59   primary_key_columns => [ 'id' ],
60
61   allow_inline_column_values => 1,
62 );
63
64 1;
65 ;