fix foreign key name in blast_db_blast_db_group table schema.
[cxgn-corelibs.git] / lib / SGN / Schema / BlastTarget.pm
blob456b9aecf71aa471f865026ce7ad31abf294eb0a
1 package SGN::Schema::BlastTarget;
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::BlastTarget
16 =cut
18 __PACKAGE__->table("blast_targets");
20 =head1 ACCESSORS
22 =head2 blast_target_id
24 data_type: 'integer'
25 is_auto_increment: 1
26 is_nullable: 0
27 sequence: 'blast_targets_blast_target_id_seq'
29 =head2 blast_program
31 data_type: 'varchar'
32 is_nullable: 1
33 size: 7
35 =head2 db_name
37 data_type: 'varchar'
38 is_nullable: 1
39 size: 80
41 =head2 db_path
43 data_type: 'varchar'
44 is_nullable: 1
45 size: 255
47 =head2 local_copy_timestamp
49 data_type: 'integer'
50 is_nullable: 1
52 =cut
54 __PACKAGE__->add_columns(
55 "blast_target_id",
57 data_type => "integer",
58 is_auto_increment => 1,
59 is_nullable => 0,
60 sequence => "blast_targets_blast_target_id_seq",
62 "blast_program",
63 { data_type => "varchar", is_nullable => 1, size => 7 },
64 "db_name",
65 { data_type => "varchar", is_nullable => 1, size => 80 },
66 "db_path",
67 { data_type => "varchar", is_nullable => 1, size => 255 },
68 "local_copy_timestamp",
69 { data_type => "integer", is_nullable => 1 },
71 __PACKAGE__->set_primary_key("blast_target_id");
74 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:32:42
75 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vAn2GVNUrs9RPpEzKHuf+Q
78 # You can replace this text with custom content, and it will be preserved on regeneration