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=0000000000000000000000000000000000000000;hb=53593baa211863fbf66540cf1bcc36c8fb37257f;hpb=deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44 diff --git a/SL/DB/MetaSetup/Shop.pm b/SL/DB/MetaSetup/Shop.pm new file mode 100644 index 000000000..adb6b3a49 --- /dev/null +++ b/SL/DB/MetaSetup/Shop.pm @@ -0,0 +1,42 @@ +# This file has been auto-generated. Do not modify it; it will be overwritten +# by rose_auto_create_model.pl automatically. +package SL::DB::Shop; + +use strict; + +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 }, + 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' ]); + +__PACKAGE__->meta->allow_inline_column_values(1); + +1; +;