/[Perly]/lib/Perly/Model/Input.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 /lib/Perly/Model/Input.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9 - (show annotations)
Tue Jun 5 11:54:18 2007 UTC (17 years, 1 month ago) by dpavlin
File size: 578 byte(s)
upload Input or Code 
1 use strict;
2 use warnings;
3
4 package Perly::Model::Input;
5 use Jifty::DBI::Schema;
6
7 use Perly::Record schema {
8
9 column content =>
10 label is 'Content',
11 type is 'text',
12 render_as 'textarea',
13 is mandatory;
14
15 column owner =>
16 refers_to Perly::Model::User by 'id',
17 label is 'Owner',
18 default is defer { Jifty->web->current_user->id || 0 };
19
20 column created_on =>
21 type is 'timestamp',
22 label is 'Created On',
23 default is defer { DateTime->now },
24 filters are 'Jifty::DBI::Filter::DateTime';
25 };
26
27 sub since { '0.0.2' };
28
29 # Your model-specific methods go here.
30
31 1;
32

  ViewVC Help
Powered by ViewVC 1.1.26