57b4971cff84512af38d4c0010145f4a18b62b9c
[kivitendo-erp.git] / SL / DB / MetaSetup / Shipto.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::Shipto;
4
5 use strict;
6
7 use parent qw(SL::DB::Object);
8
9 __PACKAGE__->meta->table('shipto');
10
11 __PACKAGE__->meta->columns(
12   itime              => { type => 'timestamp', default => 'now()' },
13   module             => { type => 'text' },
14   mtime              => { type => 'timestamp' },
15   shipto_id          => { type => 'integer', not_null => 1, sequence => 'id' },
16   shiptocity         => { type => 'text' },
17   shiptocontact      => { type => 'text' },
18   shiptocountry      => { type => 'text' },
19   shiptocp_gender    => { type => 'text' },
20   shiptodepartment_1 => { type => 'text' },
21   shiptodepartment_2 => { type => 'text' },
22   shiptoemail        => { type => 'text' },
23   shiptofax          => { type => 'text' },
24   shiptogln          => { type => 'text' },
25   shiptoname         => { type => 'text' },
26   shiptophone        => { type => 'text' },
27   shiptostreet       => { type => 'text' },
28   shiptozipcode      => { type => 'text' },
29   trans_id           => { type => 'integer' },
30 );
31
32 __PACKAGE__->meta->primary_key_columns([ 'shipto_id' ]);
33
34 __PACKAGE__->meta->allow_inline_column_values(1);
35
36 1;
37 ;