Merge pull request #42 from solgenomics/topic/duplicate_image_warning
[cxgn-corelibs.git] / lib / SGN / Schema / RflpSequence.pm
blobce3e8e273b74725059170156fe372ed06a2543d1
1 package SGN::Schema::RflpSequence;
3 # Created by DBIx::Class::Schema::Loader
4 # DO NOT MODIFY THE FIRST PART OF THIS FILE
6 use strict;
7 use warnings;
9 use base 'DBIx::Class::Core';
12 =head1 NAME
14 SGN::Schema::RflpSequence
16 =cut
18 __PACKAGE__->table("rflp_sequences");
20 =head1 ACCESSORS
22 =head2 seq_id
24 data_type: 'integer'
25 is_auto_increment: 1
26 is_nullable: 0
27 sequence: 'rflp_sequences_seq_id_seq'
29 =head2 fasta_sequence
31 data_type: 'text'
32 is_nullable: 0
34 =cut
36 __PACKAGE__->add_columns(
37 "seq_id",
39 data_type => "integer",
40 is_auto_increment => 1,
41 is_nullable => 0,
42 sequence => "rflp_sequences_seq_id_seq",
44 "fasta_sequence",
45 { data_type => "text", is_nullable => 0 },
47 __PACKAGE__->set_primary_key("seq_id");
49 =head1 RELATIONS
51 =head2 rflp_markers_reverse_seqs
53 Type: has_many
55 Related object: L<SGN::Schema::RflpMarker>
57 =cut
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
68 Type: has_many
70 Related object: L<SGN::Schema::RflpMarker>
72 =cut
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
83 Type: has_many
85 Related object: L<SGN::Schema::RflpUnigeneAssociation>
87 =cut
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