Merge pull request #42 from solgenomics/topic/duplicate_image_warning
[cxgn-corelibs.git] / lib / SGN / Schema / FishImage.pm
blob23ee0f6b740363770c6702dfbe8e4c6e02d30c97
1 package SGN::Schema::FishImage;
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::FishImage
16 =cut
18 __PACKAGE__->table("fish_image");
20 =head1 ACCESSORS
22 =head2 fish_image_id
24 data_type: 'integer'
25 default_value: 0
26 is_nullable: 0
28 =head2 filename
30 data_type: 'varchar'
31 is_nullable: 1
32 size: 255
34 =head2 fish_result_id
36 data_type: 'integer'
37 default_value: 0
38 is_nullable: 0
40 =cut
42 __PACKAGE__->add_columns(
43 "fish_image_id",
44 { data_type => "integer", default_value => 0, is_nullable => 0 },
45 "filename",
46 { data_type => "varchar", is_nullable => 1, size => 255 },
47 "fish_result_id",
48 { data_type => "integer", default_value => 0, is_nullable => 0 },
50 __PACKAGE__->set_primary_key("fish_image_id");
53 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
54 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:xu/8TWncnO9lYh3PlaG8Iw
57 # You can replace this text with custom content, and it will be preserved on regeneration