1 package SGN
::Schema
::DeprecatedMap
;
6 use base
'DBIx::Class';
8 __PACKAGE__
->load_components("Core");
9 __PACKAGE__
->table("deprecated_maps");
10 __PACKAGE__
->add_columns(
13 data_type
=> "integer",
14 default_value
=> "nextval('deprecated_maps_map_id_seq'::regclass)",
15 is_auto_increment
=> 1,
21 data_type
=> "bigint",
22 default_value
=> "(0)::bigint",
28 data_type
=> "character varying",
29 default_value
=> "''::character varying",
35 data_type
=> "character varying",
36 default_value
=> "''::character varying",
42 data_type
=> "bigint",
43 default_value
=> "(0)::bigint",
49 data_type
=> "bigint",
50 default_value
=> "(0)::bigint",
57 default_value
=> undef,
64 default_value
=> undef,
70 data_type
=> "character varying",
71 default_value
=> undef,
77 data_type
=> "character varying",
78 default_value
=> undef,
83 { data_type
=> "bigint", default_value
=> undef, is_nullable
=> 1, size
=> 8 },
85 { data_type
=> "bigint", default_value
=> undef, is_nullable
=> 1, size
=> 8 },
88 data_type
=> "character varying",
89 default_value
=> undef,
95 data_type
=> "bigint",
96 default_value
=> "(0)::bigint",
102 data_type
=> "character varying",
103 default_value
=> undef,
108 __PACKAGE__
->set_primary_key("map_id");
109 __PACKAGE__
->has_many(
110 "deprecated_linkage_groups",
111 "SGN::Schema::DeprecatedLinkageGroup",
112 { "foreign.map_id" => "self.map_id" },
114 __PACKAGE__
->has_many(
115 "deprecated_map_crosses",
116 "SGN::Schema::DeprecatedMapCross",
117 { "foreign.map_id" => "self.map_id" },
119 __PACKAGE__
->has_many(
120 "deprecated_mapdatas",
121 "SGN::Schema::DeprecatedMapdata",
122 { "foreign.map_id" => "self.map_id" },
124 __PACKAGE__
->has_many(
126 "SGN::Schema::FishResult",
127 { "foreign.map_id" => "self.map_id" },
129 __PACKAGE__
->has_many(
130 "temp_map_correspondences",
131 "SGN::Schema::TempMapCorrespondence",
132 { "foreign.old_map_id" => "self.map_id" },
136 # Created by DBIx::Class::Schema::Loader v0.04999_07 @ 2009-09-04 13:21:55
137 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ZOA9St2Q2s4BDPphigt3FA
140 # You can replace this text with custom content, and it will be preserved on regeneration