line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package GBPVR::CDBI::Programme; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
1999
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
39
|
|
4
|
1
|
|
|
1
|
|
5
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
62
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
our $VERSION = '0.02'; |
7
|
|
|
|
|
|
|
|
8
|
1
|
|
|
1
|
|
7
|
use base 'GBPVR::CDBI'; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
102
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
__PACKAGE__->table('programme'); |
11
|
|
|
|
|
|
|
__PACKAGE__->columns(Primary => qw/oid/ ); |
12
|
|
|
|
|
|
|
__PACKAGE__->columns(All => qw/ |
13
|
|
|
|
|
|
|
oid |
14
|
|
|
|
|
|
|
name |
15
|
|
|
|
|
|
|
sub_title |
16
|
|
|
|
|
|
|
description |
17
|
|
|
|
|
|
|
start_time |
18
|
|
|
|
|
|
|
end_time |
19
|
|
|
|
|
|
|
channel_oid |
20
|
|
|
|
|
|
|
unique_identifier |
21
|
|
|
|
|
|
|
/ ); |
22
|
|
|
|
|
|
|
__PACKAGE__->has_a( channel_oid => 'GBPVR::CDBI::Channel'); |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
1; |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
__END__ |