Merge pull request #42 from solgenomics/topic/duplicate_image_warning
[cxgn-corelibs.git] / lib / SGN / Schema / EstMappedByClone.pm
blobddd414ed29e7d5e1363a832cc9ea258da202e69f
1 package SGN::Schema::EstMappedByClone;
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::EstMappedByClone
16 =cut
18 __PACKAGE__->table("ests_mapped_by_clone");
20 =head1 ACCESSORS
22 =head2 embc_id
24 data_type: 'integer'
25 is_auto_increment: 1
26 is_nullable: 0
27 sequence: 'ests_mapped_by_clone_embc_id_seq'
29 =head2 marker_id
31 data_type: 'bigint'
32 is_foreign_key: 1
33 is_nullable: 1
35 =head2 clone_id
37 data_type: 'bigint'
38 is_nullable: 1
40 =cut
42 __PACKAGE__->add_columns(
43 "embc_id",
45 data_type => "integer",
46 is_auto_increment => 1,
47 is_nullable => 0,
48 sequence => "ests_mapped_by_clone_embc_id_seq",
50 "marker_id",
51 { data_type => "bigint", is_foreign_key => 1, is_nullable => 1 },
52 "clone_id",
53 { data_type => "bigint", is_nullable => 1 },
55 __PACKAGE__->set_primary_key("embc_id");
57 =head1 RELATIONS
59 =head2 marker
61 Type: belongs_to
63 Related object: L<SGN::Schema::Marker>
65 =cut
67 __PACKAGE__->belongs_to(
68 "marker",
69 "SGN::Schema::Marker",
70 { marker_id => "marker_id" },
72 is_deferrable => 1,
73 join_type => "LEFT",
74 on_delete => "CASCADE",
75 on_update => "CASCADE",
80 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
81 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PC0s36N6gQ0VsLP00ZBreQ
84 # You can replace this text with custom content, and it will be preserved on regeneration