fixed recursive_children cvterm function, and added tests for parents and children
[cxgn-corelibs.git] / lib / SGN / Schema / TmMarkersSequence.pm
blob988a007ed50804c2ac4e32d6c68c0077d0ce6aeb
1 package SGN::Schema::TmMarkersSequence;
3 use strict;
4 use warnings;
6 use base 'DBIx::Class';
8 __PACKAGE__->load_components("Core");
9 __PACKAGE__->table("tm_markers_sequences");
10 __PACKAGE__->add_columns(
11 "tm_marker_seq_id",
13 data_type => "bigint",
14 default_value => "(0)::bigint",
15 is_nullable => 0,
16 size => 8,
18 "tm_id",
19 { data_type => "bigint", default_value => undef, is_nullable => 1, size => 8 },
20 "sequence",
22 data_type => "text",
23 default_value => undef,
24 is_nullable => 1,
25 size => undef,
27 "comment",
29 data_type => "text",
30 default_value => undef,
31 is_nullable => 1,
32 size => undef,
35 __PACKAGE__->set_primary_key("tm_marker_seq_id");
38 # Created by DBIx::Class::Schema::Loader v0.04999_07 @ 2009-09-04 13:21:55
39 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:J7ci1jsVdv+jjqL27VoojA
42 # You can replace this text with custom content, and it will be preserved on regeneration