1 package SGN
::Schema
::ManualAnnotation
;
3 # Created by DBIx::Class::Schema::Loader
4 # DO NOT MODIFY THE FIRST PART OF THIS FILE
9 use base
'DBIx::Class::Core';
14 SGN::Schema::ManualAnnotation
18 __PACKAGE__
->table("manual_annotations");
22 =head2 manual_annotations_id
27 sequence: 'manual_annotations_manual_annotations_id_seq'
29 =head2 annotation_target_id
34 =head2 annotation_target_type_id
39 =head2 annotation_text
59 =head2 annotation_text_fulltext
66 __PACKAGE__
->add_columns(
67 "manual_annotations_id",
69 data_type
=> "bigint",
70 is_auto_increment
=> 1,
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 },
79 { data_type
=> "text", is_nullable
=> 1 },
81 { data_type
=> "bigint", is_nullable
=> 1 },
83 { data_type
=> "date", is_nullable
=> 1 },
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