1 package SGN
::Schema
::CosiiOrtholog
;
6 use base
'DBIx::Class';
8 __PACKAGE__
->load_components("Core");
9 __PACKAGE__
->table("cosii_ortholog");
10 __PACKAGE__
->add_columns(
13 data_type
=> "bigint",
14 default_value
=> "nextval('cosii_ortholog_cosii_unigene_id_seq'::regclass)",
15 is_auto_increment
=> 1,
21 data_type
=> "bigint",
22 default_value
=> undef,
28 { data_type
=> "integer", default_value
=> undef, is_nullable
=> 1, size
=> 4 },
31 data_type
=> "character varying",
32 default_value
=> undef,
38 data_type
=> "character varying",
39 default_value
=> undef,
45 data_type
=> "character varying",
46 default_value
=> undef,
51 { data_type
=> "bigint", default_value
=> undef, is_nullable
=> 1, size
=> 8 },
52 "peptide_sequence_id",
53 { data_type
=> "bigint", default_value
=> undef, is_nullable
=> 1, size
=> 8 },
57 default_value
=> undef,
62 __PACKAGE__
->set_primary_key("cosii_unigene_id");
63 __PACKAGE__
->belongs_to(
65 "SGN::Schema::Marker",
66 { marker_id
=> "marker_id" },
67 { join_type
=> "LEFT" },
71 # Created by DBIx::Class::Schema::Loader v0.04999_07 @ 2009-09-04 13:21:55
72 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3+cYN1Wvi8E9pql7xqxyQQ
75 # You can replace this text with custom content, and it will be preserved on regeneration