1 package SGN
::Schema
::DeprecatedMapCross
;
6 use base
'DBIx::Class';
8 __PACKAGE__
->load_components("Core");
9 __PACKAGE__
->table("deprecated_map_cross");
10 __PACKAGE__
->add_columns(
13 data_type
=> "integer",
14 default_value
=> "nextval('deprecated_map_cross_map_cross_id_seq'::regclass)",
15 is_auto_increment
=> 1,
21 data_type
=> "bigint",
22 default_value
=> "(0)::bigint",
29 data_type
=> "bigint",
30 default_value
=> "(0)::bigint",
36 __PACKAGE__
->set_primary_key("map_cross_id");
37 __PACKAGE__
->belongs_to(
39 "SGN::Schema::Organism",
40 { organism_id
=> "organism_id" },
42 __PACKAGE__
->belongs_to("map", "SGN::Schema::DeprecatedMap", { map_id
=> "map_id" });
45 # Created by DBIx::Class::Schema::Loader v0.04999_07 @ 2009-09-04 13:21:55
46 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LjKtQDgffWt7h7U8ST83Lw
49 # You can replace this text with custom content, and it will be preserved on regeneration