1 package SGN
::Schema
::DeprecatedMarkerConfidence
;
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::DeprecatedMarkerConfidence
18 __PACKAGE__
->table("deprecated_marker_confidences");
27 sequence: 'deprecated_marker_confidences_confidence_id_seq'
29 =head2 confidence_name
42 __PACKAGE__
->add_columns(
45 data_type
=> "integer",
46 is_auto_increment
=> 1,
48 sequence
=> "deprecated_marker_confidences_confidence_id_seq",
51 { data_type
=> "varchar", is_nullable
=> 1, size
=> 16 },
53 { data_type
=> "bigint", is_nullable
=> 1 },
55 __PACKAGE__
->set_primary_key("confidence_id");
56 __PACKAGE__
->add_unique_constraint("legacy_conf_id_unique", ["legacy_conf_id"]);
60 =head2 deprecated_marker_locations
64 Related object: L<SGN::Schema::DeprecatedMarkerLocation>
68 __PACKAGE__
->has_many(
69 "deprecated_marker_locations",
70 "SGN::Schema::DeprecatedMarkerLocation",
71 { "foreign.confidence" => "self.legacy_conf_id" },
72 { cascade_copy
=> 0, cascade_delete
=> 0 },
79 Related object: L<SGN::Schema::MapVersion>
83 __PACKAGE__
->has_many(
85 "SGN::Schema::MapVersion",
86 { "foreign.default_threshold" => "self.confidence_id" },
87 { cascade_copy
=> 0, cascade_delete
=> 0 },
91 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:32:42
92 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jVtQOSMFK+hZZ3sajdmzqA
95 # You can replace this text with custom content, and it will be preserved on regeneration