X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FShipto.pm;h=57b4971cff84512af38d4c0010145f4a18b62b9c;hb=5202b3e71b817c6a78845cd4c27773760ff408b6;hp=bb3a9bcd773ec4964615c6c58548caf8d6eec40b;hpb=3eb3d1b144adb92e62de08e67dc6ff3d39bf7483;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/Shipto.pm b/SL/DB/MetaSetup/Shipto.pm index bb3a9bcd7..57b4971cf 100644 --- a/SL/DB/MetaSetup/Shipto.pm +++ b/SL/DB/MetaSetup/Shipto.pm @@ -4,7 +4,7 @@ package SL::DB::Shipto; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('shipto'); @@ -13,18 +13,19 @@ __PACKAGE__->meta->columns( module => { type => 'text' }, mtime => { type => 'timestamp' }, shipto_id => { type => 'integer', not_null => 1, sequence => 'id' }, - shiptocity => { type => 'varchar', length => 75 }, - shiptocontact => { type => 'varchar', length => 75 }, - shiptocountry => { type => 'varchar', length => 75 }, + shiptocity => { type => 'text' }, + shiptocontact => { type => 'text' }, + shiptocountry => { type => 'text' }, shiptocp_gender => { type => 'text' }, - shiptodepartment_1 => { type => 'varchar', length => 75 }, - shiptodepartment_2 => { type => 'varchar', length => 75 }, + shiptodepartment_1 => { type => 'text' }, + shiptodepartment_2 => { type => 'text' }, shiptoemail => { type => 'text' }, - shiptofax => { type => 'varchar', length => 30 }, - shiptoname => { type => 'varchar', length => 75 }, - shiptophone => { type => 'varchar', length => 30 }, - shiptostreet => { type => 'varchar', length => 75 }, - shiptozipcode => { type => 'varchar', length => 75 }, + shiptofax => { type => 'text' }, + shiptogln => { type => 'text' }, + shiptoname => { type => 'text' }, + shiptophone => { type => 'text' }, + shiptostreet => { type => 'text' }, + shiptozipcode => { type => 'text' }, trans_id => { type => 'integer' }, );