1 package SGN
::Schema
::SsrPrimerUnigeneMatch
;
6 use base
'DBIx::Class';
8 __PACKAGE__
->load_components("Core");
9 __PACKAGE__
->table("ssr_primer_unigene_matches");
10 __PACKAGE__
->add_columns(
11 "ssr_primer_unigene_match_id",
13 data_type
=> "integer",
14 default_value
=> "nextval('ssr_primer_unigene_matches_ssr_primer_unigene_match_id_seq'::regclass)",
15 is_auto_increment
=> 1,
21 data_type
=> "bigint",
22 default_value
=> "(0)::bigint",
29 data_type
=> "bigint",
30 default_value
=> "(0)::bigint",
37 data_type
=> "smallint",
38 default_value
=> "(0)::smallint",
44 data_type
=> "bigint",
45 default_value
=> "(0)::bigint",
51 data_type
=> "bigint",
52 default_value
=> "(0)::bigint",
58 data_type
=> "bigint",
59 default_value
=> "(0)::bigint",
63 "unigene_match_start",
65 data_type
=> "bigint",
66 default_value
=> "(0)::bigint",
72 data_type
=> "bigint",
73 default_value
=> "(0)::bigint",
79 data_type
=> "character varying",
80 default_value
=> "''::character varying",
85 __PACKAGE__
->set_primary_key("ssr_primer_unigene_match_id");
86 __PACKAGE__
->belongs_to("ssr", "SGN::Schema::Ssr", { ssr_id
=> "ssr_id" });
87 __PACKAGE__
->belongs_to(
89 "SGN::Schema::Unigene",
90 { unigene_id
=> "unigene_id" },
94 # Created by DBIx::Class::Schema::Loader v0.04999_07 @ 2009-09-04 13:21:55
95 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GZ6q121kHisxdchL9pmQgg
98 # You can replace this text with custom content, and it will be preserved on regeneration