Merge pull request #42 from solgenomics/topic/duplicate_image_warning
[cxgn-corelibs.git] / lib / SGN / Schema / FishFile.pm
blobdd4ca93474b75a7d06cc168e668d9be12551d5a3
1 package SGN::Schema::FishFile;
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::FishFile
16 =cut
18 __PACKAGE__->table("fish_file");
20 =head1 ACCESSORS
22 =head2 fish_file_id
24 data_type: 'bigint'
25 is_auto_increment: 1
26 is_nullable: 0
27 sequence: 'fish_file_fish_file_id_seq'
29 =head2 filename
31 data_type: 'varchar'
32 is_nullable: 1
33 size: 255
35 =head2 fish_result_id
37 data_type: 'bigint'
38 default_value: '0)::bigint'
39 is_nullable: 0
41 =cut
43 __PACKAGE__->add_columns(
44 "fish_file_id",
46 data_type => "bigint",
47 is_auto_increment => 1,
48 is_nullable => 0,
49 sequence => "fish_file_fish_file_id_seq",
51 "filename",
52 { data_type => "varchar", is_nullable => 1, size => 255 },
53 "fish_result_id",
54 { data_type => "bigint", default_value => "0)::bigint", is_nullable => 0 },
56 __PACKAGE__->set_primary_key("fish_file_id");
59 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
60 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wFX+WY6+MP6TSA2Sh9nboA
63 # You can replace this text with custom content, and it will be preserved on regeneration