1 package SGN
::Schema
::RflpSequence
;
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::RflpSequence
18 __PACKAGE__
->table("rflp_sequences");
27 sequence: 'rflp_sequences_seq_id_seq'
36 __PACKAGE__
->add_columns(
39 data_type
=> "integer",
40 is_auto_increment
=> 1,
42 sequence
=> "rflp_sequences_seq_id_seq",
45 { data_type
=> "text", is_nullable
=> 0 },
47 __PACKAGE__
->set_primary_key("seq_id");
51 =head2 rflp_markers_reverse_seqs
55 Related object: L<SGN::Schema::RflpMarker>
59 __PACKAGE__
->has_many(
60 "rflp_markers_reverse_seqs",
61 "SGN::Schema::RflpMarker",
62 { "foreign.reverse_seq_id" => "self.seq_id" },
63 { cascade_copy
=> 0, cascade_delete
=> 0 },
66 =head2 rflp_markers_forward_seqs
70 Related object: L<SGN::Schema::RflpMarker>
74 __PACKAGE__
->has_many(
75 "rflp_markers_forward_seqs",
76 "SGN::Schema::RflpMarker",
77 { "foreign.forward_seq_id" => "self.seq_id" },
78 { cascade_copy
=> 0, cascade_delete
=> 0 },
81 =head2 rflp_unigene_associations
85 Related object: L<SGN::Schema::RflpUnigeneAssociation>
89 __PACKAGE__
->has_many(
90 "rflp_unigene_associations",
91 "SGN::Schema::RflpUnigeneAssociation",
92 { "foreign.rflp_seq_id" => "self.seq_id" },
93 { cascade_copy
=> 0, cascade_delete
=> 0 },
97 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
98 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:87+xNwu87RpRdUP2/z7cEg
101 # You can replace this text with custom content, and it will be preserved on regeneration