— — — — — — |
column zones_id =>
{ data_type => "integer" };
column country_iso_code =>
{ data_type => "char" , size => 2 };
primary_key "zones_id" , "country_iso_code" ;
belongs_to
zone => "Interchange6::Schema::Result::Zone" ,
"zones_id" ,
{ is_deferrable => 1, on_delete => "CASCADE" , on_update => "CASCADE" };
belongs_to
country => "Interchange6::Schema::Result::Country" ,
"country_iso_code" ,
{ is_deferrable => 1, on_delete => "CASCADE" , on_update => "CASCADE" };
1;
|