fix foreign key name in blast_db_blast_db_group table schema.
[cxgn-corelibs.git] / lib / SGN / Schema / TmMarkersSequence.pm
blobb97ba73369fda799c60d520877c5e367fd5b6f01
1 package SGN::Schema::TmMarkersSequence;
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::TmMarkersSequence
16 =cut
18 __PACKAGE__->table("tm_markers_sequences");
20 =head1 ACCESSORS
22 =head2 tm_marker_seq_id
24 data_type: 'bigint'
25 default_value: '0)::bigint'
26 is_nullable: 0
28 =head2 tm_id
30 data_type: 'bigint'
31 is_nullable: 1
33 =head2 sequence
35 accessor: undef
36 data_type: 'text'
37 is_nullable: 1
39 =head2 comment
41 data_type: 'text'
42 is_nullable: 1
44 =cut
46 __PACKAGE__->add_columns(
47 "tm_marker_seq_id",
48 { data_type => "bigint", default_value => "0)::bigint", is_nullable => 0 },
49 "tm_id",
50 { data_type => "bigint", is_nullable => 1 },
51 "sequence",
52 { accessor => undef, data_type => "text", is_nullable => 1 },
53 "comment",
54 { data_type => "text", is_nullable => 1 },
56 __PACKAGE__->set_primary_key("tm_marker_seq_id");
59 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
60 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Ur2YJs3YnkXRw4IjdqsE2Q
63 # You can replace this text with custom content, and it will be preserved on regeneration