GBPVR::CDBI::RecTracker::RecordedShows - RecTracker.RecordedShows table


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

Index


Code Index:

NAME

Top

GBPVR::CDBI::RecTracker::RecordedShows - RecTracker.RecordedShows table

VERSION

Top

Version 0.02

SYNOPSIS

Top

ATTRIBUTES

Top

oid, name, sub_title, description, unqiue_id, startdate

METHODS

Top

unique_id

Alias for the unqiue_id (sic) column to correct the spelling.

AUTHOR

Top

David Westbrook, <dwestbrook at gmail.com>

COPYRIGHT & LICENSE

Top


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

package GBPVR::CDBI::RecTracker::RecordedShows;

use warnings;
use strict;

our $VERSION = '0.02';

use base 'GBPVR::CDBI::RecTracker';

__PACKAGE__->table('RecordedShows');
__PACKAGE__->columns(Primary => qw/oid/ );
__PACKAGE__->columns(All => qw/
		name sub_title description unqiue_id startdate
	/ );

sub unique_id {
  my $self = shift;
  return $self->unqiue_id( @_ );
}

1;
__END__