fix foreign key name in blast_db_blast_db_group table schema.
[cxgn-corelibs.git] / lib / SGN / Schema / Misc.pm
blob5b474aa992d7a879f08de511d370b99f35ccc9bd
1 package SGN::Schema::Misc;
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::Misc
16 =cut
18 __PACKAGE__->table("misc");
20 =head1 ACCESSORS
22 =head2 misc_unique_id
24 data_type: 'integer'
25 is_auto_increment: 1
26 is_nullable: 0
27 sequence: 'misc_misc_unique_id_seq'
29 =head2 misc_id
31 data_type: 'integer'
32 is_nullable: 1
34 =head2 name
36 data_type: 'text'
37 is_nullable: 1
39 =head2 value
41 data_type: 'bytea'
42 is_nullable: 1
44 =cut
46 __PACKAGE__->add_columns(
47 "misc_unique_id",
49 data_type => "integer",
50 is_auto_increment => 1,
51 is_nullable => 0,
52 sequence => "misc_misc_unique_id_seq",
54 "misc_id",
55 { data_type => "integer", is_nullable => 1 },
56 "name",
57 { data_type => "text", is_nullable => 1 },
58 "value",
59 { data_type => "bytea", is_nullable => 1 },
61 __PACKAGE__->set_primary_key("misc_unique_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:oYvzANrnfJnxudkR0KNN6g
68 # You can replace this text with custom content, and it will be preserved on regeneration