updated dbic schema objects for sgn schema
[cxgn-corelibs.git] / lib / SGN / Schema / Microarray.pm
bloba5f924d8ffea1ef2a80ad9e40a448fb499bdf5c8
1 package SGN::Schema::Microarray;
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::Microarray
16 =cut
18 __PACKAGE__->table("microarray");
20 =head1 ACCESSORS
22 =head2 microarray_id
24 data_type: 'integer'
25 is_auto_increment: 1
26 is_nullable: 0
27 sequence: 'microarray_microarray_id_seq'
29 =head2 chip_name
31 data_type: 'varchar'
32 is_nullable: 1
33 size: 80
35 =head2 release
37 data_type: 'bigint'
38 is_nullable: 1
40 =head2 version
42 data_type: 'bigint'
43 is_nullable: 1
45 =head2 spot_id
47 data_type: 'varchar'
48 is_nullable: 1
49 size: 20
51 =head2 content_specific_tag
53 data_type: 'varchar'
54 is_nullable: 1
55 size: 40
57 =head2 clone_id
59 data_type: 'integer'
60 is_nullable: 1
62 =cut
64 __PACKAGE__->add_columns(
65 "microarray_id",
67 data_type => "integer",
68 is_auto_increment => 1,
69 is_nullable => 0,
70 sequence => "microarray_microarray_id_seq",
72 "chip_name",
73 { data_type => "varchar", is_nullable => 1, size => 80 },
74 "release",
75 { data_type => "bigint", is_nullable => 1 },
76 "version",
77 { data_type => "bigint", is_nullable => 1 },
78 "spot_id",
79 { data_type => "varchar", is_nullable => 1, size => 20 },
80 "content_specific_tag",
81 { data_type => "varchar", is_nullable => 1, size => 40 },
82 "clone_id",
83 { data_type => "integer", is_nullable => 1 },
85 __PACKAGE__->set_primary_key("microarray_id");
88 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
89 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:D7MV8jLQPry3+egSyEAinA
92 # You can replace this text with custom content, and it will be preserved on regeneration