Merge pull request #42 from solgenomics/topic/duplicate_image_warning
[cxgn-corelibs.git] / lib / SGN / Schema / BlastDefline.pm
blob4d56ea26f49f828366e23e94d7d85a9811d484c1
1 package SGN::Schema::BlastDefline;
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::BlastDefline
16 =cut
18 __PACKAGE__->table("blast_defline");
20 =head1 ACCESSORS
22 =head2 defline_id
24 data_type: 'integer'
25 is_auto_increment: 1
26 is_nullable: 0
27 sequence: 'blast_defline_defline_id_seq'
29 =head2 blast_target_id
31 data_type: 'integer'
32 is_nullable: 1
34 =head2 target_db_id
36 data_type: 'varchar'
37 is_nullable: 1
38 size: 255
40 =head2 defline
42 data_type: 'text'
43 is_nullable: 1
45 =head2 defline_fulltext
47 data_type: 'tsvector'
48 is_nullable: 1
50 =head2 identifier_defline_fulltext
52 data_type: 'tsvector'
53 is_nullable: 1
55 =cut
57 __PACKAGE__->add_columns(
58 "defline_id",
60 data_type => "integer",
61 is_auto_increment => 1,
62 is_nullable => 0,
63 sequence => "blast_defline_defline_id_seq",
65 "blast_target_id",
66 { data_type => "integer", is_nullable => 1 },
67 "target_db_id",
68 { data_type => "varchar", is_nullable => 1, size => 255 },
69 "defline",
70 { data_type => "text", is_nullable => 1 },
71 "defline_fulltext",
72 { data_type => "tsvector", is_nullable => 1 },
73 "identifier_defline_fulltext",
74 { data_type => "tsvector", is_nullable => 1 },
76 __PACKAGE__->set_primary_key("defline_id");
79 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:32:42
80 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:c3T+el9V3/ziJEFzPnmUUg
83 # You can replace this text with custom content, and it will be preserved on regeneration