| GBPVR-CDBI documentation | Contained in the GBPVR-CDBI distribution. |
GBPVR::CDBI::RecTracker::RecordedShows - RecTracker.RecordedShows table
Version 0.02
oid, name, sub_title, description, unqiue_id, startdate
Alias for the unqiue_id (sic) column to correct the spelling.
David Westbrook, <dwestbrook at gmail.com>
Copyright 2006 David Westbrook, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| 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__