File Coverage

blib/lib/Bio/Chado/Schema/Result/Pub/Pubauthor.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Bio::Chado::Schema::Result::Pub::Pubauthor;
2             BEGIN {
3 6     6   2714 $Bio::Chado::Schema::Result::Pub::Pubauthor::AUTHORITY = 'cpan:RBUELS';
4             }
5             BEGIN {
6 6     6   103 $Bio::Chado::Schema::Result::Pub::Pubauthor::VERSION = '0.08001'; # TRIAL
7             }
8              
9             # Created by DBIx::Class::Schema::Loader
10             # DO NOT MODIFY THE FIRST PART OF THIS FILE
11              
12 6     6   35 use strict;
  6         15  
  6         101  
13 6     6   26 use warnings;
  6         13  
  6         198  
14              
15 6     6   28 use base 'DBIx::Class::Core';
  6         14  
  6         999  
16              
17              
18              
19             __PACKAGE__->table("pubauthor");
20              
21              
22             __PACKAGE__->add_columns(
23             "pubauthor_id",
24             {
25             data_type => "integer",
26             is_auto_increment => 1,
27             is_nullable => 0,
28             sequence => "pubauthor_pubauthor_id_seq",
29             },
30             "pub_id",
31             { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
32             "rank",
33             { data_type => "integer", is_nullable => 0 },
34             "editor",
35             { data_type => "boolean", default_value => \"false", is_nullable => 1 },
36             "surname",
37             { data_type => "varchar", is_nullable => 0, size => 100 },
38             "givennames",
39             { data_type => "varchar", is_nullable => 1, size => 100 },
40             "suffix",
41             { data_type => "varchar", is_nullable => 1, size => 100 },
42             );
43             __PACKAGE__->set_primary_key("pubauthor_id");
44             __PACKAGE__->add_unique_constraint("pubauthor_c1", ["pub_id", "rank"]);
45              
46              
47             __PACKAGE__->belongs_to(
48             "pub",
49             "Bio::Chado::Schema::Result::Pub::Pub",
50             { pub_id => "pub_id" },
51             {
52             cascade_copy => 0,
53             cascade_delete => 0,
54             is_deferrable => 1,
55             on_delete => "CASCADE",
56             on_update => "CASCADE",
57             },
58             );
59              
60              
61             # Created by DBIx::Class::Schema::Loader v0.07001 @ 2010-08-16 23:01:56
62             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TfKZW1xAzNaFCLc9Crirvg
63              
64              
65             # You can replace this text with custom content, and it will be preserved on regeneration
66             1;
67              
68             __END__