Merge pull request #42 from solgenomics/topic/duplicate_image_warning
[cxgn-corelibs.git] / lib / SGN / Schema / TigrtcIndex.pm
blob623091109e215f980d1dfdcbcfb68d584d1b903b
1 package SGN::Schema::TigrtcIndex;
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::TigrtcIndex
16 =cut
18 __PACKAGE__->table("tigrtc_index");
20 =head1 ACCESSORS
22 =head2 tcindex_id
24 data_type: 'integer'
25 is_auto_increment: 1
26 is_nullable: 0
27 sequence: 'tigrtc_index_tcindex_id_seq'
29 =head2 index_name
31 data_type: 'varchar'
32 is_nullable: 1
33 size: 40
35 =cut
37 __PACKAGE__->add_columns(
38 "tcindex_id",
40 data_type => "integer",
41 is_auto_increment => 1,
42 is_nullable => 0,
43 sequence => "tigrtc_index_tcindex_id_seq",
45 "index_name",
46 { data_type => "varchar", is_nullable => 1, size => 40 },
48 __PACKAGE__->set_primary_key("tcindex_id");
51 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
52 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BH9l17I5337w6Ntxj8w3pA
55 # You can replace this text with custom content, and it will be preserved on regeneration