/[transports]/trunk/lib/Transports/Model/Destination.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/lib/Transports/Model/Destination.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1 - (show annotations)
Thu May 4 15:12:03 2006 UTC (18 years ago) by dpavlin
File size: 526 byte(s)
initital import

1 use strict;
2 use warnings;
3
4 package Transports::Model::Destination::Schema;
5 use Jifty::DBI::Schema;
6
7 column name =>
8 type is 'text',
9 label is 'Destination client',
10 is mandatory,
11 since '0.0.7';
12
13 # Your column definitions go here. See L<Jifty::DBI::Schema> for
14 # documentation about how to write column definitions.
15
16 package Transports::Model::Destination;
17 use base qw/Transports::Record/;
18
19 # Your model-specific methods go here.
20
21 sub available_values {
22 my $self = shift;
23 return $self->column("name")->valid_values;
24 }
25
26 1;
27

  ViewVC Help
Powered by ViewVC 1.1.26