Merge pull request #42 from solgenomics/topic/duplicate_image_warning
[cxgn-corelibs.git] / lib / SGN / Schema / ManualAnnotation.pm
blob9e50ca664e925e461fec2cc57610b11ffdea3e5d
1 package SGN::Schema::ManualAnnotation;
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::ManualAnnotation
16 =cut
18 __PACKAGE__->table("manual_annotations");
20 =head1 ACCESSORS
22 =head2 manual_annotations_id
24 data_type: 'bigint'
25 is_auto_increment: 1
26 is_nullable: 0
27 sequence: 'manual_annotations_manual_annotations_id_seq'
29 =head2 annotation_target_id
31 data_type: 'bigint'
32 is_nullable: 1
34 =head2 annotation_target_type_id
36 data_type: 'bigint'
37 is_nullable: 1
39 =head2 annotation_text
41 data_type: 'text'
42 is_nullable: 1
44 =head2 author_id
46 data_type: 'bigint'
47 is_nullable: 1
49 =head2 date_entered
51 data_type: 'date'
52 is_nullable: 1
54 =head2 last_modified
56 data_type: 'date'
57 is_nullable: 1
59 =head2 annotation_text_fulltext
61 data_type: 'tsvector'
62 is_nullable: 1
64 =cut
66 __PACKAGE__->add_columns(
67 "manual_annotations_id",
69 data_type => "bigint",
70 is_auto_increment => 1,
71 is_nullable => 0,
72 sequence => "manual_annotations_manual_annotations_id_seq",
74 "annotation_target_id",
75 { data_type => "bigint", is_nullable => 1 },
76 "annotation_target_type_id",
77 { data_type => "bigint", is_nullable => 1 },
78 "annotation_text",
79 { data_type => "text", is_nullable => 1 },
80 "author_id",
81 { data_type => "bigint", is_nullable => 1 },
82 "date_entered",
83 { data_type => "date", is_nullable => 1 },
84 "last_modified",
85 { data_type => "date", is_nullable => 1 },
86 "annotation_text_fulltext",
87 { data_type => "tsvector", is_nullable => 1 },
89 __PACKAGE__->set_primary_key("manual_annotations_id");
92 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
93 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Gcxm7n7LvfxTdi36jg+9Gg
96 # You can replace this text with custom content, and it will be preserved on regeneration