1 package SGN
::Schema
::CosiiOrtholog
;
3 # Created by DBIx::Class::Schema::Loader
4 # DO NOT MODIFY THE FIRST PART OF THIS FILE
9 use base
'DBIx::Class::Core';
14 SGN::Schema::CosiiOrtholog
18 __PACKAGE__
->table("cosii_ortholog");
22 =head2 cosii_unigene_id
27 sequence: 'cosii_ortholog_cosii_unigene_id_seq'
58 =head2 edited_sequence_id
63 =head2 peptide_sequence_id
75 __PACKAGE__
->add_columns(
78 data_type
=> "bigint",
79 is_auto_increment
=> 1,
81 sequence
=> "cosii_ortholog_cosii_unigene_id_seq",
84 { data_type
=> "bigint", is_foreign_key
=> 1, is_nullable
=> 1 },
86 { data_type
=> "integer", is_nullable
=> 1 },
88 { data_type
=> "varchar", is_nullable
=> 1, size
=> 1 },
90 { data_type
=> "varchar", is_nullable
=> 1, size
=> 11 },
92 { data_type
=> "varchar", is_nullable
=> 1, size
=> 255 },
94 { data_type
=> "bigint", is_nullable
=> 1 },
95 "peptide_sequence_id",
96 { data_type
=> "bigint", is_nullable
=> 1 },
98 { data_type
=> "text", is_nullable
=> 1 },
100 __PACKAGE__
->set_primary_key("cosii_unigene_id");
108 Related object: L<SGN::Schema::Marker>
112 __PACKAGE__
->belongs_to(
114 "SGN::Schema::Marker",
115 { marker_id
=> "marker_id" },
119 on_delete
=> "CASCADE",
120 on_update
=> "CASCADE",
125 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:32:42
126 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5E/wH8hjHQqk3rLvGjTuCA
129 # You can replace this text with custom content, and it will be preserved on regeneration