Bio::Chado::Schema::Companalysis::Analysisprop - Bio::Chado::Schema::Companalysis::Analysisprop documentation


Bio-Chado-Schema documentation Contained in the Bio-Chado-Schema distribution.

Index


Code Index:

NAME

Top

Bio::Chado::Schema::Companalysis::Analysisprop

ACCESSORS

Top

analysisprop_id

  data_type: integer
  default_value: nextval('analysisprop_analysisprop_id_seq'::regclass)
  is_auto_increment: 1
  is_nullable: 0

analysis_id

  data_type: integer
  default_value: undef
  is_foreign_key: 1
  is_nullable: 0

type_id

  data_type: integer
  default_value: undef
  is_foreign_key: 1
  is_nullable: 0

value

  data_type: text
  default_value: undef
  is_nullable: 1

rank

  data_type: integer
  default_value: 0
  is_nullable: 0

RELATIONS

Top

type

Type: belongs_to

Related object: Bio::Chado::Schema::Cv::Cvterm

analysis

Type: belongs_to

Related object: Bio::Chado::Schema::Companalysis::Analysis


Bio-Chado-Schema documentation Contained in the Bio-Chado-Schema distribution.
package Bio::Chado::Schema::Companalysis::Analysisprop;

# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE

use strict;
use warnings;

use base 'DBIx::Class::Core';


__PACKAGE__->table("analysisprop");

__PACKAGE__->add_columns(
  "analysisprop_id",
  {
    data_type         => "integer",
    default_value     => \"nextval('analysisprop_analysisprop_id_seq'::regclass)",
    is_auto_increment => 1,
    is_nullable       => 0,
  },
  "analysis_id",
  {
    data_type      => "integer",
    default_value  => undef,
    is_foreign_key => 1,
    is_nullable    => 0,
  },
  "type_id",
  {
    data_type      => "integer",
    default_value  => undef,
    is_foreign_key => 1,
    is_nullable    => 0,
  },
  "value",
  { data_type => "text", default_value => undef, is_nullable => 1 },
  "rank",
  { data_type => "integer", default_value => 0, is_nullable => 0 },
);
__PACKAGE__->set_primary_key("analysisprop_id");
__PACKAGE__->add_unique_constraint("analysisprop_c1", ["analysis_id", "type_id", "rank"]);

__PACKAGE__->belongs_to(
  "type",
  "Bio::Chado::Schema::Cv::Cvterm",
  { cvterm_id => "type_id" },
  { cascade_copy => 0, cascade_delete => 0 },
);

__PACKAGE__->belongs_to(
  "analysis",
  "Bio::Chado::Schema::Companalysis::Analysis",
  { analysis_id => "analysis_id" },
  { cascade_copy => 0, cascade_delete => 0 },
);


# Created by DBIx::Class::Schema::Loader v0.05002 @ 2010-02-18 11:30:28
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3AmFwg2dMB+PPehlq0pz+g


# You can replace this text with custom content, and it will be preserved on regeneration
1;