1 # This file has been auto-generated. Do not modify it; it will be overwritten
 
   2 # by rose_auto_create_model.pl automatically.
 
   3 package SL::DB::RequirementSpecItem;
 
   7 use base qw(SL::DB::Object);
 
   9 __PACKAGE__->meta->table('requirement_spec_items');
 
  11 __PACKAGE__->meta->columns(
 
  12   acceptance_status_id => { type => 'integer' },
 
  13   acceptance_text      => { type => 'text' },
 
  14   complexity_id        => { type => 'integer' },
 
  15   description          => { type => 'text' },
 
  16   fb_number            => { type => 'text', not_null => 1 },
 
  17   id                   => { type => 'serial', not_null => 1 },
 
  18   is_flagged           => { type => 'boolean', default => 'false', not_null => 1 },
 
  19   item_type            => { type => 'text', not_null => 1 },
 
  20   itime                => { type => 'timestamp', default => 'now()', not_null => 1 },
 
  21   mtime                => { type => 'timestamp' },
 
  22   order_part_id        => { type => 'integer' },
 
  23   parent_id            => { type => 'integer' },
 
  24   position             => { type => 'integer', not_null => 1 },
 
  25   requirement_spec_id  => { type => 'integer', not_null => 1 },
 
  26   risk_id              => { type => 'integer' },
 
  27   time_estimation      => { type => 'numeric', default => '0', not_null => 1, precision => 12, scale => 2 },
 
  28   title                => { type => 'text' },
 
  31 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
 
  33 __PACKAGE__->meta->allow_inline_column_values(1);
 
  35 __PACKAGE__->meta->foreign_keys(
 
  36   acceptance_status => {
 
  37     class       => 'SL::DB::RequirementSpecAcceptanceStatus',
 
  38     key_columns => { acceptance_status_id => 'id' },
 
  42     class       => 'SL::DB::RequirementSpecComplexity',
 
  43     key_columns => { complexity_id => 'id' },
 
  47     class       => 'SL::DB::Part',
 
  48     key_columns => { order_part_id => 'id' },
 
  52     class       => 'SL::DB::RequirementSpecItem',
 
  53     key_columns => { parent_id => 'id' },
 
  57     class       => 'SL::DB::RequirementSpec',
 
  58     key_columns => { requirement_spec_id => 'id' },
 
  62     class       => 'SL::DB::RequirementSpecRisk',
 
  63     key_columns => { risk_id => 'id' },