X-Git-Url: http://wagnertech.de/git?p=kivitendo-erp.git;a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FShop.pm;fp=SL%2FDB%2FMetaSetup%2FShop.pm;h=adb6b3a496590d2e2250bcc10048143d6d0cb454;hp=1110fd07a5b9938bc2240dc0befdc37cb51d98c7;hb=b293ff8ad52fc76ba0c44783e3982418114d6b08;hpb=d4925a8b60f04674885e30d9316dc0263f8b9a84 diff --git a/SL/DB/MetaSetup/Shop.pm b/SL/DB/MetaSetup/Shop.pm index 1110fd07a..adb6b3a49 100644 --- a/SL/DB/MetaSetup/Shop.pm +++ b/SL/DB/MetaSetup/Shop.pm @@ -9,27 +9,29 @@ use parent qw(SL::DB::Object); __PACKAGE__->meta->table('shops'); __PACKAGE__->meta->columns( - connector => { type => 'text' }, - description => { type => 'text' }, - id => { type => 'serial', not_null => 1 }, - itime => { type => 'timestamp', default => 'now()' }, - last_order_number => { type => 'integer' }, - login => { type => 'text' }, - mtime => { type => 'timestamp', default => 'now()' }, - obsolete => { type => 'boolean', default => 'false', not_null => 1 }, - orders_to_fetch => { type => 'integer' }, - password => { type => 'text' }, - path => { type => 'text', default => '/', not_null => 1 }, - port => { type => 'integer' }, - price_source => { type => 'text' }, - pricetype => { type => 'text' }, - protocol => { type => 'text', default => 'http', not_null => 1 }, - realm => { type => 'text' }, - server => { type => 'text' }, - shipping_costs_parts_id => { type => 'integer' }, - sortkey => { type => 'integer' }, - taxzone_id => { type => 'integer' }, - transaction_description => { type => 'text' }, + connector => { type => 'text' }, + description => { type => 'text' }, + id => { type => 'serial', not_null => 1 }, + itime => { type => 'timestamp', default => 'now()' }, + last_order_number => { type => 'integer' }, + login => { type => 'text' }, + mtime => { type => 'timestamp', default => 'now()' }, + obsolete => { type => 'boolean', default => 'false', not_null => 1 }, + orders_to_fetch => { type => 'integer' }, + password => { type => 'text' }, + path => { type => 'text', default => '/', not_null => 1 }, + port => { type => 'integer' }, + price_source => { type => 'text' }, + pricetype => { type => 'text' }, + protocol => { type => 'text', default => 'http', not_null => 1 }, + proxy => { type => 'text', default => '' }, + realm => { type => 'text' }, + server => { type => 'text' }, + shipping_costs_parts_id => { type => 'integer' }, + sortkey => { type => 'integer' }, + taxzone_id => { type => 'integer' }, + transaction_description => { type => 'text' }, + use_part_longdescription => { type => 'boolean', default => 'false' }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]);