Merge pull request #42 from solgenomics/topic/duplicate_image_warning
[cxgn-corelibs.git] / lib / SGN / Schema / IdLinkage.pm
blob8ad3a07803e0753715083991e9842ef7f7182fd9
1 package SGN::Schema::IdLinkage;
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::IdLinkage
16 =cut
18 __PACKAGE__->table("id_linkage");
20 =head1 ACCESSORS
22 =head2 id_linkage_id
24 data_type: 'integer'
25 is_auto_increment: 1
26 is_nullable: 0
27 sequence: 'id_linkage_id_linkage_id_seq'
29 =head2 link_id
31 data_type: 'varchar'
32 is_nullable: 1
33 size: 80
35 =head2 link_id_type
37 data_type: 'integer'
38 is_nullable: 1
40 =head2 internal_id
42 data_type: 'integer'
43 is_nullable: 1
45 =head2 internal_id_type
47 data_type: 'integer'
48 is_nullable: 1
50 =cut
52 __PACKAGE__->add_columns(
53 "id_linkage_id",
55 data_type => "integer",
56 is_auto_increment => 1,
57 is_nullable => 0,
58 sequence => "id_linkage_id_linkage_id_seq",
60 "link_id",
61 { data_type => "varchar", is_nullable => 1, size => 80 },
62 "link_id_type",
63 { data_type => "integer", is_nullable => 1 },
64 "internal_id",
65 { data_type => "integer", is_nullable => 1 },
66 "internal_id_type",
67 { data_type => "integer", is_nullable => 1 },
69 __PACKAGE__->set_primary_key("id_linkage_id");
72 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
73 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3lxwVVcsl6z0eWnMu9HAZQ
76 # You can replace this text with custom content, and it will be preserved on regeneration