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