1 package SGN
::Schema
::TempMapCorrespondence
;
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::TempMapCorrespondence
18 __PACKAGE__
->table("temp_map_correspondence");
27 sequence: 'temp_map_correspondence_tmc_id_seq'
43 __PACKAGE__
->add_columns(
46 data_type
=> "integer",
47 is_auto_increment
=> 1,
49 sequence
=> "temp_map_correspondence_tmc_id_seq",
52 { data_type
=> "integer", is_foreign_key
=> 1, is_nullable
=> 1 },
54 { data_type
=> "integer", is_foreign_key
=> 1, is_nullable
=> 1 },
56 __PACKAGE__
->set_primary_key("tmc_id");
64 Related object: L<SGN::Schema::DeprecatedMap>
68 __PACKAGE__
->belongs_to(
70 "SGN::Schema::DeprecatedMap",
71 { map_id
=> "old_map_id" },
75 on_delete
=> "CASCADE",
76 on_update
=> "CASCADE",
84 Related object: L<SGN::Schema::MapVersion>
88 __PACKAGE__
->belongs_to(
90 "SGN::Schema::MapVersion",
91 { map_version_id
=> "map_version_id" },
95 on_delete
=> "CASCADE",
96 on_update
=> "CASCADE",
101 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
102 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:mGOVLygbNyVF5q7Z0F/yfw
105 # You can replace this text with custom content, and it will be preserved on regeneration