1 package SGN
::Schema
::MarkerConfidence
;
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::MarkerConfidence
18 __PACKAGE__
->table("marker_confidence");
27 sequence: 'marker_confidence_confidence_id_seq'
29 =head2 confidence_name
36 __PACKAGE__
->add_columns(
39 data_type
=> "integer",
40 is_auto_increment
=> 1,
42 sequence
=> "marker_confidence_confidence_id_seq",
45 { data_type
=> "text", is_nullable
=> 1 },
47 __PACKAGE__
->set_primary_key("confidence_id");
48 __PACKAGE__
->add_unique_constraint("marker_confidence_confidence_name_key", ["confidence_name"]);
52 =head2 marker_locations
56 Related object: L<SGN::Schema::MarkerLocation>
60 __PACKAGE__
->has_many(
62 "SGN::Schema::MarkerLocation",
63 { "foreign.confidence_id" => "self.confidence_id" },
64 { cascade_copy
=> 0, cascade_delete
=> 0 },
68 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
69 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:roKn9U2mzGcfcoxTGgFjuw
72 # You can replace this text with custom content, and it will be preserved on regeneration