X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FRequirementSpec.pm;h=667f39a6bf67126990d6e106597da6b70cf03e04;hb=b50f89e56d91662eb69a47351c430ff6270c7d39;hp=bb37ba6e3fc15fc64592104784f28ae92cd51820;hpb=13fbd33663c229ec309a858ac1d393fdd508ddbe;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/RequirementSpec.pm b/SL/DB/MetaSetup/RequirementSpec.pm index bb37ba6e3..667f39a6b 100644 --- a/SL/DB/MetaSetup/RequirementSpec.pm +++ b/SL/DB/MetaSetup/RequirementSpec.pm @@ -10,18 +10,19 @@ __PACKAGE__->meta->table('requirement_specs'); __PACKAGE__->meta->columns( customer_id => { type => 'integer' }, - hourly_rate => { type => 'numeric', default => '0', not_null => 1, precision => 2, scale => 8 }, + hourly_rate => { type => 'numeric', default => '0', not_null => 1, precision => 8, scale => 2 }, id => { type => 'serial', not_null => 1 }, is_template => { type => 'boolean', default => 'false' }, itime => { type => 'timestamp', default => 'now()' }, mtime => { type => 'timestamp' }, previous_fb_number => { type => 'integer', not_null => 1 }, + previous_picture_number => { type => 'integer', default => '0', not_null => 1 }, previous_section_number => { type => 'integer', not_null => 1 }, project_id => { type => 'integer' }, status_id => { type => 'integer' }, - time_estimation => { type => 'numeric', default => '0', not_null => 1, precision => 2, scale => 12 }, + time_estimation => { type => 'numeric', default => '0', not_null => 1, precision => 12, scale => 2 }, title => { type => 'text', not_null => 1 }, - type_id => { type => 'integer' }, + type_id => { type => 'integer', not_null => 1 }, working_copy_id => { type => 'integer' }, );