Merge pull request #42 from solgenomics/topic/duplicate_image_warning
[cxgn-corelibs.git] / lib / SGN / Schema / EstsMappedByClone.pm
blobb72dcfa536dd76a81d89f5e436f107dd49072994
1 package SGN::Schema::EstsMappedByClone;
3 use strict;
4 use warnings;
6 use base 'DBIx::Class';
8 __PACKAGE__->load_components("Core");
9 __PACKAGE__->table("ests_mapped_by_clone");
10 __PACKAGE__->add_columns(
11 "embc_id",
13 data_type => "integer",
14 default_value => "nextval('ests_mapped_by_clone_embc_id_seq'::regclass)",
15 is_auto_increment => 1,
16 is_nullable => 0,
17 size => 4,
19 "marker_id",
21 data_type => "bigint",
22 default_value => undef,
23 is_foreign_key => 1,
24 is_nullable => 1,
25 size => 8,
27 "clone_id",
28 { data_type => "bigint", default_value => undef, is_nullable => 1, size => 8 },
30 __PACKAGE__->set_primary_key("embc_id");
31 __PACKAGE__->belongs_to(
32 "marker",
33 "SGN::Schema::Marker",
34 { marker_id => "marker_id" },
35 { join_type => "LEFT" },
39 # Created by DBIx::Class::Schema::Loader v0.04999_07 @ 2009-09-04 13:21:55
40 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LGRHiplz8v+Ud7YW66y1OA
43 # You can replace this text with custom content, and it will be preserved on regeneration