]> wagnertech.de Git - kivitendo-erp.git/blobdiff - SL/DB/MetaSetup/ProjectParticipant.pm
Pflichtenhefte: Mapping für Tabelle project_statuses gefixt
[kivitendo-erp.git] / SL / DB / MetaSetup / ProjectParticipant.pm
index 0f99ce6fdf170e264048a93718d86d4fb2de90fb..92dbd1a14de75512de97371a66b4ed10dc027016 100644 (file)
@@ -12,7 +12,7 @@ __PACKAGE__->meta->columns(
   cost_per_hour   => { type => 'numeric', precision => 5, scale => 15 },
   employee_id     => { type => 'integer', not_null => 1 },
   id              => { type => 'serial', not_null => 1 },
-  itime           => { type => 'timestamp', default => '2013-05-08 09:11:09.704126' },
+  itime           => { type => 'timestamp', default => 'now()' },
   minutes         => { type => 'integer', default => '0', not_null => 1 },
   mtime           => { type => 'timestamp' },
   project_id      => { type => 'integer', not_null => 1 },
@@ -21,6 +21,8 @@ __PACKAGE__->meta->columns(
 
 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
 
+__PACKAGE__->meta->allow_inline_column_values(1);
+
 __PACKAGE__->meta->foreign_keys(
   employee => {
     class       => 'SL::DB::Employee',