fixed recursive_children cvterm function, and added tests for parents and children
[cxgn-corelibs.git] / lib / SGN / Schema / TigrtcTracking.pm
bloba38fd8fc39b4c4e858196988597c4fabb43b98e3
1 package SGN::Schema::TigrtcTracking;
3 use strict;
4 use warnings;
6 use base 'DBIx::Class';
8 __PACKAGE__->load_components("Core");
9 __PACKAGE__->table("tigrtc_tracking");
10 __PACKAGE__->add_columns(
11 "tigrtc_tracking_id",
13 data_type => "integer",
14 default_value => "nextval('tigrtc_tracking_tigrtc_tracking_id_seq'::regclass)",
15 is_auto_increment => 1,
16 is_nullable => 0,
17 size => 4,
19 "tc_id",
20 { data_type => "integer", default_value => undef, is_nullable => 1, size => 4 },
21 "current_tc_id",
22 { data_type => "integer", default_value => undef, is_nullable => 1, size => 4 },
23 "tcindex_id",
24 { data_type => "integer", default_value => undef, is_nullable => 1, size => 4 },
26 __PACKAGE__->set_primary_key("tigrtc_tracking_id");
29 # Created by DBIx::Class::Schema::Loader v0.04999_07 @ 2009-09-04 13:21:55
30 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4dLwJ0ZdTTQHmdD/NFQfvw
33 # You can replace this text with custom content, and it will be preserved on regeneration