fixed recursive_children cvterm function, and added tests for parents and children
[cxgn-corelibs.git] / lib / SGN / Schema / BlastTarget.pm
blobb746b683465cf6290ef332f97e4b741d8a23cc46
1 package SGN::Schema::BlastTarget;
3 use strict;
4 use warnings;
6 use base 'DBIx::Class';
8 __PACKAGE__->load_components("Core");
9 __PACKAGE__->table("blast_targets");
10 __PACKAGE__->add_columns(
11 "blast_target_id",
13 data_type => "integer",
14 default_value => "nextval('blast_targets_blast_target_id_seq'::regclass)",
15 is_auto_increment => 1,
16 is_nullable => 0,
17 size => 4,
19 "blast_program",
21 data_type => "character varying",
22 default_value => undef,
23 is_nullable => 1,
24 size => 7,
26 "db_name",
28 data_type => "character varying",
29 default_value => undef,
30 is_nullable => 1,
31 size => 80,
33 "db_path",
35 data_type => "character varying",
36 default_value => undef,
37 is_nullable => 1,
38 size => 255,
40 "local_copy_timestamp",
41 { data_type => "integer", default_value => undef, is_nullable => 1, size => 4 },
43 __PACKAGE__->set_primary_key("blast_target_id");
46 # Created by DBIx::Class::Schema::Loader v0.04999_07 @ 2009-09-04 13:21:55
47 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:J/73wB//mUYLUj1wybSdhw
50 # You can replace this text with custom content, and it will be preserved on regeneration