Merge pull request #42 from solgenomics/topic/duplicate_image_warning
[cxgn-corelibs.git] / lib / SGN / Schema / TrimFeature.pm
blob74d11fee0eaa99502e55a83332275b7b429298b7
1 package SGN::Schema::TrimFeature;
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::TrimFeature
16 =cut
18 __PACKAGE__->table("trim_feature");
20 =head1 ACCESSORS
22 =head2 feature_id
24 data_type: 'integer'
25 is_auto_increment: 1
26 is_nullable: 0
27 sequence: 'trim_feature_feature_id_seq'
29 =head2 est_id
31 data_type: 'integer'
32 is_nullable: 1
34 =head2 start
36 data_type: 'bigint'
37 is_nullable: 1
39 =head2 end
41 data_type: 'bigint'
42 is_nullable: 1
44 =head2 type
46 data_type: 'bigint'
47 is_nullable: 1
49 =head2 value
51 data_type: 'bytea'
52 is_nullable: 1
54 =cut
56 __PACKAGE__->add_columns(
57 "feature_id",
59 data_type => "integer",
60 is_auto_increment => 1,
61 is_nullable => 0,
62 sequence => "trim_feature_feature_id_seq",
64 "est_id",
65 { data_type => "integer", is_nullable => 1 },
66 "start",
67 { data_type => "bigint", is_nullable => 1 },
68 "end",
69 { data_type => "bigint", is_nullable => 1 },
70 "type",
71 { data_type => "bigint", is_nullable => 1 },
72 "value",
73 { data_type => "bytea", is_nullable => 1 },
75 __PACKAGE__->set_primary_key("feature_id");
78 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
79 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Kf4D6jnlOIcrZeWLnY9jLg
82 # You can replace this text with custom content, and it will be preserved on regeneration