Merge pull request #42 from solgenomics/topic/duplicate_image_warning
[cxgn-corelibs.git] / lib / SGN / Schema / MarkerToMap.pm
blob365b1dfcd7bb3885387a127f31d2143d1e124e55
1 package SGN::Schema::MarkerToMap;
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::MarkerToMap
16 =cut
18 __PACKAGE__->table("marker_to_map");
20 =head1 ACCESSORS
22 =head2 marker_id
24 data_type: 'integer'
25 is_nullable: 1
27 =head2 protocol
29 data_type: 'text'
30 is_nullable: 1
32 =head2 location_id
34 data_type: 'integer'
35 is_nullable: 1
37 =head2 lg_name
39 data_type: 'text'
40 is_nullable: 1
42 =head2 lg_order
44 data_type: 'integer'
45 is_nullable: 1
47 =head2 position
49 data_type: 'numeric'
50 is_nullable: 1
51 size: [9,6]
53 =head2 confidence_id
55 data_type: 'integer'
56 is_nullable: 1
58 =head2 subscript
60 data_type: 'char'
61 is_nullable: 1
62 size: 1
64 =head2 map_version_id
66 data_type: 'integer'
67 is_nullable: 1
69 =head2 map_id
71 data_type: 'integer'
72 is_nullable: 1
74 =head2 parent_1
76 data_type: 'integer'
77 is_nullable: 1
79 =head2 parent_2
81 data_type: 'integer'
82 is_nullable: 1
84 =head2 current_version
86 data_type: 'boolean'
87 is_nullable: 1
89 =cut
91 __PACKAGE__->add_columns(
92 "marker_id",
93 { data_type => "integer", is_nullable => 1 },
94 "protocol",
95 { data_type => "text", is_nullable => 1 },
96 "location_id",
97 { data_type => "integer", is_nullable => 1 },
98 "lg_name",
99 { data_type => "text", is_nullable => 1 },
100 "lg_order",
101 { data_type => "integer", is_nullable => 1 },
102 "position",
103 { data_type => "numeric", is_nullable => 1, size => [9, 6] },
104 "confidence_id",
105 { data_type => "integer", is_nullable => 1 },
106 "subscript",
107 { data_type => "char", is_nullable => 1, size => 1 },
108 "map_version_id",
109 { data_type => "integer", is_nullable => 1 },
110 "map_id",
111 { data_type => "integer", is_nullable => 1 },
112 "parent_1",
113 { data_type => "integer", is_nullable => 1 },
114 "parent_2",
115 { data_type => "integer", is_nullable => 1 },
116 "current_version",
117 { data_type => "boolean", is_nullable => 1 },
121 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
122 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:DRojZP1ZUqn3TBUzFAH+/w
125 # You can replace this text with custom content, and it will be preserved on regeneration