Merge branch 'test' of ../kivitendo-erp_20220811
[kivitendo-erp.git] / SL / DB / MetaSetup / Shop.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::Shop;
4
5 use strict;
6
7 use parent qw(SL::DB::Object);
8
9 __PACKAGE__->meta->table('shops');
10
11 __PACKAGE__->meta->columns(
12   connector                => { type => 'text' },
13   description              => { type => 'text' },
14   id                       => { type => 'serial', not_null => 1 },
15   itime                    => { type => 'timestamp', default => 'now()' },
16   last_order_number        => { type => 'integer' },
17   login                    => { type => 'text' },
18   mtime                    => { type => 'timestamp', default => 'now()' },
19   obsolete                 => { type => 'boolean', default => 'false', not_null => 1 },
20   orders_to_fetch          => { type => 'integer' },
21   password                 => { type => 'text' },
22   path                     => { type => 'text', default => '/', not_null => 1 },
23   port                     => { type => 'integer' },
24   price_source             => { type => 'text' },
25   pricetype                => { type => 'text' },
26   protocol                 => { type => 'text', default => 'http', not_null => 1 },
27   proxy                    => { type => 'text', default => '' },
28   realm                    => { type => 'text' },
29   server                   => { type => 'text' },
30   shipping_costs_parts_id  => { type => 'integer' },
31   sortkey                  => { type => 'integer' },
32   taxzone_id               => { type => 'integer' },
33   transaction_description  => { type => 'text' },
34   use_part_longdescription => { type => 'boolean', default => 'false' },
35 );
36
37 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
38
39 __PACKAGE__->meta->allow_inline_column_values(1);
40
41 1;
42 ;