use parent statt use base in MetaSetup
[kivitendo-erp.git] / SL / DB / MetaSetup / ProjectType.pm
index 3d452cc..d336b7e 100644 (file)
@@ -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 },
 );