Merge pull request #42 from solgenomics/topic/duplicate_image_warning
[cxgn-corelibs.git] / lib / SGN / Schema / GroupLinkage.pm
blob8502d3fdea79c989fd4187571e9352d7fb8d6586
1 package SGN::Schema::GroupLinkage;
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::GroupLinkage
16 =cut
18 __PACKAGE__->table("group_linkage");
20 =head1 ACCESSORS
22 =head2 group_linkage_id
24 data_type: 'integer'
25 is_auto_increment: 1
26 is_nullable: 0
27 sequence: 'group_linkage_group_linkage_id_seq'
29 =head2 group_id
31 data_type: 'integer'
32 is_nullable: 1
34 =head2 member_id
36 data_type: 'integer'
37 is_nullable: 1
39 =head2 member_type
41 data_type: 'bigint'
42 is_nullable: 1
44 =head2 member_value
46 data_type: 'bytea'
47 is_nullable: 1
49 =cut
51 __PACKAGE__->add_columns(
52 "group_linkage_id",
54 data_type => "integer",
55 is_auto_increment => 1,
56 is_nullable => 0,
57 sequence => "group_linkage_group_linkage_id_seq",
59 "group_id",
60 { data_type => "integer", is_nullable => 1 },
61 "member_id",
62 { data_type => "integer", is_nullable => 1 },
63 "member_type",
64 { data_type => "bigint", is_nullable => 1 },
65 "member_value",
66 { data_type => "bytea", is_nullable => 1 },
68 __PACKAGE__->set_primary_key("group_linkage_id");
71 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
72 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wRthsfk+3dZbyhxvnSULVw
75 # You can replace this text with custom content, and it will be preserved on regeneration