/[transports]/trunk/lib/Transports/Model/Source.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/Source.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: 511 byte(s)
initital import

1 use strict;
2 use warnings;
3
4 package Transports::Model::Source::Schema;
5 use Jifty::DBI::Schema;
6
7 # Your column definitions go here. See L<Jifty::DBI::Schema> for
8 # documentation about how to write column definitions.
9
10 column name =>
11 type is 'text',
12 label is 'Source client',
13 is mandatory,
14 since '0.0.6';
15
16 package Transports::Model::Source;
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