Merge pull request #42 from solgenomics/topic/duplicate_image_warning
[cxgn-corelibs.git] / lib / SGN / Schema / IlInfo.pm
blobd7663f2499e3b31b9abffb77976cb4b456bb8838
1 package SGN::Schema::IlInfo;
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::IlInfo
16 =cut
18 __PACKAGE__->table("il_info");
20 =head1 ACCESSORS
22 =head2 ns_marker_id
24 data_type: 'integer'
25 is_nullable: 1
27 =head2 sn_marker_id
29 data_type: 'integer'
30 is_nullable: 1
32 =head2 map_id
34 data_type: 'integer'
35 is_nullable: 1
37 =head2 map_version_id
39 data_type: 'integer'
40 is_nullable: 1
42 =head2 population_id
44 data_type: 'bigint'
45 is_nullable: 1
47 =head2 ns_position
49 data_type: 'numeric'
50 is_nullable: 1
51 size: [8,5]
53 =head2 sn_position
55 data_type: 'numeric'
56 is_nullable: 1
57 size: [8,5]
59 =head2 name
61 data_type: 'varchar'
62 is_nullable: 1
63 size: 100
65 =head2 ns_alias
67 data_type: 'text'
68 is_nullable: 1
70 =head2 sn_alias
72 data_type: 'text'
73 is_nullable: 1
75 =head2 lg_name
77 data_type: 'text'
78 is_nullable: 1
80 =cut
82 __PACKAGE__->add_columns(
83 "ns_marker_id",
84 { data_type => "integer", is_nullable => 1 },
85 "sn_marker_id",
86 { data_type => "integer", is_nullable => 1 },
87 "map_id",
88 { data_type => "integer", is_nullable => 1 },
89 "map_version_id",
90 { data_type => "integer", is_nullable => 1 },
91 "population_id",
92 { data_type => "bigint", is_nullable => 1 },
93 "ns_position",
94 { data_type => "numeric", is_nullable => 1, size => [8, 5] },
95 "sn_position",
96 { data_type => "numeric", is_nullable => 1, size => [8, 5] },
97 "name",
98 { data_type => "varchar", is_nullable => 1, size => 100 },
99 "ns_alias",
100 { data_type => "text", is_nullable => 1 },
101 "sn_alias",
102 { data_type => "text", is_nullable => 1 },
103 "lg_name",
104 { data_type => "text", is_nullable => 1 },
108 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
109 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:bolPyJfTePfg3/kyvYUg/g
112 # You can replace this text with custom content, and it will be preserved on regeneration