1 package SGN
::Schema
::SsrRepeat
;
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::SsrRepeat
18 __PACKAGE__
->table("ssr_repeats");
27 sequence: 'ssr_repeats_repeat_id_seq'
32 default_value: '0)::bigint'
39 default_value: (empty string)
56 __PACKAGE__
->add_columns(
59 data_type
=> "integer",
60 is_auto_increment
=> 1,
62 sequence
=> "ssr_repeats_repeat_id_seq",
66 data_type
=> "bigint",
67 default_value
=> "0)::bigint",
72 { data_type
=> "varchar", default_value
=> "", is_nullable
=> 0, size
=> 32 },
74 { data_type
=> "bigint", is_nullable
=> 1 },
76 { data_type
=> "integer", is_foreign_key
=> 1, is_nullable
=> 0 },
78 __PACKAGE__
->set_primary_key("repeat_id");
86 Related object: L<SGN::Schema::Ssr>
90 __PACKAGE__
->belongs_to(
93 { ssr_id
=> "ssr_id" },
94 { is_deferrable
=> 1, on_delete
=> "CASCADE", on_update
=> "CASCADE" },
101 Related object: L<SGN::Schema::Marker>
105 __PACKAGE__
->belongs_to(
107 "SGN::Schema::Marker",
108 { marker_id
=> "marker_id" },
109 { is_deferrable
=> 1, on_delete
=> "CASCADE", on_update
=> "CASCADE" },
113 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
114 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:eqJ7PQCJuJpBf57paZCwMA
117 # You can replace this text with custom content, and it will be preserved on regeneration