Merge pull request #42 from solgenomics/topic/duplicate_image_warning
[cxgn-corelibs.git] / lib / SGN / Schema / ManualCensorReason.pm
blobd3a43ea164fc845506df5688560c9de8e924c10a
1 package SGN::Schema::ManualCensorReason;
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::ManualCensorReason
16 =cut
18 __PACKAGE__->table("manual_censor_reasons");
20 =head1 ACCESSORS
22 =head2 censor_id
24 data_type: 'integer'
25 is_auto_increment: 1
26 is_nullable: 0
27 sequence: 'manual_censor_reasons_censor_id_seq'
29 =head2 reason
31 data_type: 'text'
32 is_nullable: 1
34 =cut
36 __PACKAGE__->add_columns(
37 "censor_id",
39 data_type => "integer",
40 is_auto_increment => 1,
41 is_nullable => 0,
42 sequence => "manual_censor_reasons_censor_id_seq",
44 "reason",
45 { data_type => "text", is_nullable => 1 },
47 __PACKAGE__->set_primary_key("censor_id");
50 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
51 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Q79FT+pen42efio+jHsBHQ
54 # You can replace this text with custom content, and it will be preserved on regeneration