1 package SGN
::Schema
::BlastHit
;
6 use base
'DBIx::Class';
8 __PACKAGE__
->load_components("Core");
9 __PACKAGE__
->table("blast_hits");
10 __PACKAGE__
->add_columns(
13 data_type
=> "integer",
14 default_value
=> "nextval('blast_hits_blast_hit_id_seq'::regclass)",
15 is_auto_increment
=> 1,
19 "blast_annotation_id",
21 data_type
=> "integer",
22 default_value
=> undef,
29 data_type
=> "character varying",
30 default_value
=> undef,
36 data_type
=> "double precision",
37 default_value
=> undef,
43 data_type
=> "double precision",
44 default_value
=> undef,
48 "identity_percentage",
50 data_type
=> "double precision",
51 default_value
=> undef,
56 { data_type
=> "bigint", default_value
=> undef, is_nullable
=> 1, size
=> 8 },
58 { data_type
=> "bigint", default_value
=> undef, is_nullable
=> 1, size
=> 8 },
60 { data_type
=> "integer", default_value
=> undef, is_nullable
=> 1, size
=> 4 },
62 __PACKAGE__
->set_primary_key("blast_hit_id");
63 __PACKAGE__
->belongs_to(
65 "SGN::Schema::BlastAnnotation",
66 { blast_annotation_id
=> "blast_annotation_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:QKBiP2cK+zwhJ7uLGcmmiQ
75 # You can replace this text with custom content, and it will be preserved on regeneration