X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FContact.pm;h=419375f0204f4983b857cd7de4457a09e36b4f3b;hb=53593baa211863fbf66540cf1bcc36c8fb37257f;hp=7f821751983d62bd925687e97b99da1686a331e8;hpb=fa7fc7eeb3ca718914affee06c0629a08d571288;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/Contact.pm b/SL/DB/MetaSetup/Contact.pm index 7f8217519..419375f02 100644 --- a/SL/DB/MetaSetup/Contact.pm +++ b/SL/DB/MetaSetup/Contact.pm @@ -4,7 +4,7 @@ package SL::DB::Contact; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('contacts'); @@ -18,6 +18,7 @@ __PACKAGE__->meta->columns( cp_gender => { type => 'character', length => 1 }, cp_givenname => { type => 'text' }, cp_id => { type => 'integer', not_null => 1, sequence => 'id' }, + cp_main => { type => 'boolean', default => 'false' }, cp_mobile1 => { type => 'text' }, cp_mobile2 => { type => 'text' }, cp_name => { type => 'text' },