1 package SGN
::Schema
::RflpUnigeneAssociation
;
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::RflpUnigeneAssociation
18 __PACKAGE__
->table("rflp_unigene_associations");
22 =head2 rflp_unigene_assoc_id
27 sequence: 'rflp_unigene_associations_rflp_unigene_assoc_id_seq'
43 data_type: 'double precision'
63 __PACKAGE__
->add_columns(
64 "rflp_unigene_assoc_id",
66 data_type
=> "integer",
67 is_auto_increment
=> 1,
69 sequence
=> "rflp_unigene_associations_rflp_unigene_assoc_id_seq",
72 { data_type
=> "bigint", is_foreign_key
=> 1, is_nullable
=> 1 },
74 { data_type
=> "bigint", is_foreign_key
=> 1, is_nullable
=> 1 },
76 { data_type
=> "double precision", is_nullable
=> 1 },
78 { data_type
=> "bigint", is_nullable
=> 1 },
80 { data_type
=> "bigint", is_nullable
=> 1 },
82 { data_type
=> "bigint", is_nullable
=> 1 },
84 __PACKAGE__
->set_primary_key("rflp_unigene_assoc_id");
92 Related object: L<SGN::Schema::Unigene>
96 __PACKAGE__
->belongs_to(
98 "SGN::Schema::Unigene",
99 { unigene_id
=> "unigene_id" },
103 on_delete
=> "CASCADE",
104 on_update
=> "CASCADE",
112 Related object: L<SGN::Schema::RflpSequence>
116 __PACKAGE__
->belongs_to(
118 "SGN::Schema::RflpSequence",
119 { seq_id
=> "rflp_seq_id" },
123 on_delete
=> "CASCADE",
124 on_update
=> "CASCADE",
129 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
130 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8HiLrErnVTkuUbndvyRZ9g
133 # You can replace this text with custom content, and it will be preserved on regeneration