GBPVR::CDBI::Programme - GBPVR.programme table


GBPVR-CDBI documentation Contained in the GBPVR-CDBI distribution.

Index


Code Index:

NAME

Top

GBPVR::CDBI::Programme - GBPVR.programme table

VERSION

Top

Version 0.02

SYNOPSIS

Top

ATTRIBUTES

Top

oid, name, sub_title, description, start_time, end_time, channel_oid, unique_identifier

FOREIGN KEYS

Top

        channel_oid => L<GBPVR::CDBI::Channel>

AUTHOR

Top

David Westbrook, <dwestbrook at gmail.com>

COPYRIGHT & LICENSE

Top


GBPVR-CDBI documentation Contained in the GBPVR-CDBI distribution.

package GBPVR::CDBI::Programme;

use warnings;
use strict;

our $VERSION = '0.02';

use base 'GBPVR::CDBI';

__PACKAGE__->table('programme');
__PACKAGE__->columns(Primary => qw/oid/ );
__PACKAGE__->columns(All => qw/
	oid
	name
	sub_title
	description
	start_time
	end_time
	channel_oid
	unique_identifier
/ );
__PACKAGE__->has_a( channel_oid => 'GBPVR::CDBI::Channel');

1;

__END__