MetaSetup neu generiert
[kivitendo-erp.git] / SL / DB / MetaSetup / Customer.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::Customer;
4
5 use strict;
6
7 use base qw(SL::DB::Object);
8
9 __PACKAGE__->meta->table('customer');
10
11 __PACKAGE__->meta->columns(
12   id                  => { type => 'integer', not_null => 1, sequence => 'id' },
13   name                => { type => 'text', not_null => 1 },
14   department_1        => { type => 'varchar', length => 75 },
15   department_2        => { type => 'varchar', length => 75 },
16   street              => { type => 'varchar', length => 75 },
17   zipcode             => { type => 'varchar', length => 10 },
18   city                => { type => 'varchar', length => 75 },
19   country             => { type => 'varchar', length => 75 },
20   contact             => { type => 'text' },
21   phone               => { type => 'text' },
22   fax                 => { type => 'varchar', length => 30 },
23   homepage            => { type => 'text' },
24   email               => { type => 'text' },
25   notes               => { type => 'text' },
26   discount            => { type => 'float', precision => 4 },
27   taxincluded         => { type => 'boolean' },
28   creditlimit         => { type => 'numeric', default => '0', precision => 5, scale => 15 },
29   terms               => { type => 'integer', default => '0' },
30   customernumber      => { type => 'text' },
31   cc                  => { type => 'text' },
32   bcc                 => { type => 'text' },
33   business_id         => { type => 'integer' },
34   taxnumber           => { type => 'text' },
35   account_number      => { type => 'text' },
36   bank_code           => { type => 'text' },
37   bank                => { type => 'text' },
38   language            => { type => 'varchar', length => 5 },
39   itime               => { type => 'timestamp', default => 'now()' },
40   mtime               => { type => 'timestamp' },
41   obsolete            => { type => 'boolean', default => 'false' },
42   username            => { type => 'varchar', length => 50 },
43   user_password       => { type => 'text' },
44   salesman_id         => { type => 'integer' },
45   c_vendor_id         => { type => 'text' },
46   klass               => { type => 'integer', default => '0' },
47   language_id         => { type => 'integer' },
48   payment_id          => { type => 'integer' },
49   taxzone_id          => { type => 'integer', default => '0', not_null => 1 },
50   greeting            => { type => 'text' },
51   ustid               => { type => 'text' },
52   direct_debit        => { type => 'boolean', default => 'false' },
53   iban                => { type => 'varchar', length => 100 },
54   bic                 => { type => 'varchar', length => 100 },
55   taxincluded_checked => { type => 'boolean' },
56   currency_id         => { type => 'integer', not_null => 1 },
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
75 # __PACKAGE__->meta->initialize;
76
77 1;
78 ;