X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FProjectType.pm;h=d336b7ee89069ac12b14da30441b934783ccf8c5;hb=a9d9ca02abd3a0ff1e43f23888142266174bec55;hp=3d452ccc8e33111895db6aec67ade14ef68d8f0f;hpb=08c79c2c65b17701c1f42d9a2b4623d7bd806120;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/ProjectType.pm b/SL/DB/MetaSetup/ProjectType.pm index 3d452ccc8..d336b7ee8 100644 --- a/SL/DB/MetaSetup/ProjectType.pm +++ b/SL/DB/MetaSetup/ProjectType.pm @@ -4,13 +4,14 @@ package SL::DB::ProjectType; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('project_types'); __PACKAGE__->meta->columns( description => { type => 'text' }, id => { type => 'serial', not_null => 1 }, + internal => { type => 'boolean', default => 'false', not_null => 1 }, position => { type => 'integer', not_null => 1 }, );