Merge pull request #42 from solgenomics/topic/duplicate_image_warning
[cxgn-corelibs.git] / lib / SGN / Schema / FishChromatinDensityConstant.pm
blob54bfe10d07683ed98f0943eb9337fb74304f169f
1 package SGN::Schema::FishChromatinDensityConstant;
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::FishChromatinDensityConstant
16 =cut
18 __PACKAGE__->table("fish_chromatin_density_constants");
20 =head1 ACCESSORS
22 =head2 arm
24 data_type: 'varchar'
25 default_value: 'E'
26 is_nullable: 0
27 size: 1
29 =head2 density
31 data_type: 'real'
32 is_nullable: 1
34 =cut
36 __PACKAGE__->add_columns(
37 "arm",
38 { data_type => "varchar", default_value => "E", is_nullable => 0, size => 1 },
39 "density",
40 { data_type => "real", is_nullable => 1 },
42 __PACKAGE__->set_primary_key("arm");
45 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
46 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ACCZqFUM8p3nR/j4MmmhqA
49 # You can replace this text with custom content, and it will be preserved on regeneration