Neues Feld Übernahme Beschreibung/Langtext aus Stammdaten
[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   realm                    => { type => 'text' },
28   server                   => { type => 'text' },
29   shipping_costs_parts_id  => { type => 'integer' },
30   sortkey                  => { type => 'integer' },
31   taxzone_id               => { type => 'integer' },
32   transaction_description  => { type => 'text' },
33   use_part_longdescription => { type => 'boolean', default => 'false' },
34 );
35
36 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
37
38 __PACKAGE__->meta->allow_inline_column_values(1);
39
40 1;
41 ;