X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/82c10c28823964cfd2248440af9eb8e37c9fcaf2..9dffe94b2b63322be723ad557ba1e1222185bf1c:/SL/DB/MetaSetup/RequirementSpec.pm diff --git a/SL/DB/MetaSetup/RequirementSpec.pm b/SL/DB/MetaSetup/RequirementSpec.pm index 9971f8662..a6a2c4f04 100644 --- a/SL/DB/MetaSetup/RequirementSpec.pm +++ b/SL/DB/MetaSetup/RequirementSpec.pm @@ -11,10 +11,10 @@ __PACKAGE__->meta->setup( columns => [ id => { type => 'serial', not_null => 1 }, - type_id => { type => 'integer', not_null => 1 }, - status_id => { type => 'integer', not_null => 1 }, + type_id => { type => 'integer' }, + status_id => { type => 'integer' }, version_id => { type => 'integer' }, - customer_id => { type => 'integer', not_null => 1 }, + customer_id => { type => 'integer' }, project_id => { type => 'integer' }, title => { type => 'text', not_null => 1 }, hourly_rate => { type => 'numeric', default => '0', not_null => 1, precision => 2, scale => 8 },