fix foreign key name in blast_db_blast_db_group table schema.
[cxgn-corelibs.git] / lib / SGN / Schema / TempCapsCorrespondence.pm
bloba57dc885a6679ccd3eb33dc61f8ee1e995888abd
1 package SGN::Schema::TempCapsCorrespondence;
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::TempCapsCorrespondence
16 =cut
18 __PACKAGE__->table("temp_caps_correspondence");
20 =head1 ACCESSORS
22 =head2 tcc_id
24 data_type: 'integer'
25 is_auto_increment: 1
26 is_nullable: 0
27 sequence: 'temp_caps_correspondence_tcc_id_seq'
29 =head2 old_marker_id
31 data_type: 'integer'
32 is_nullable: 1
34 =head2 new_marker_id
36 data_type: 'integer'
37 is_nullable: 1
39 =cut
41 __PACKAGE__->add_columns(
42 "tcc_id",
44 data_type => "integer",
45 is_auto_increment => 1,
46 is_nullable => 0,
47 sequence => "temp_caps_correspondence_tcc_id_seq",
49 "old_marker_id",
50 { data_type => "integer", is_nullable => 1 },
51 "new_marker_id",
52 { data_type => "integer", is_nullable => 1 },
54 __PACKAGE__->set_primary_key("tcc_id");
57 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
58 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:aXrYHcEdAAKPM42jD48IDQ
61 # You can replace this text with custom content, and it will be preserved on regeneration