1 package SGN
::Schema
::MarkerAlia
;
6 use base
'DBIx::Class';
8 __PACKAGE__
->load_components("Core");
9 __PACKAGE__
->table("marker_alias");
10 __PACKAGE__
->add_columns(
13 data_type
=> "integer",
14 default_value
=> "nextval('marker_alias_alias_id_seq'::regclass)",
15 is_auto_increment
=> 1,
22 default_value
=> undef,
28 data_type
=> "integer",
29 default_value
=> undef,
36 data_type
=> "boolean",
37 default_value
=> "true",
42 __PACKAGE__
->set_primary_key("alias_id");
43 __PACKAGE__
->add_unique_constraint("marker_alias_alias_key", ["alias"]);
44 __PACKAGE__
->belongs_to("marker", "SGN::Schema::Marker", { marker_id
=> "marker_id" });
47 # Created by DBIx::Class::Schema::Loader v0.04999_07 @ 2009-09-04 13:21:55
48 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QiT4n0BXlEhVqNqhBIsRzw
51 # You can replace this text with custom content, and it will be preserved on regeneration