/[notice-sender]/jifty-dbi/lib/Nos/Users.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 /jifty-dbi/lib/Nos/Users.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 92 - (show annotations)
Tue Dec 19 10:32:18 2006 UTC (17 years, 4 months ago) by dpavlin
File size: 500 byte(s)
begin migration from Class::DBI to Jifty::DBI
1 use warnings;
2 use strict;
3
4 package Nos::Users::Schema;
5 use Jifty::DBI::Schema;
6
7 column email => type is 'text', is mandatory;
8 column full_name => type is 'text' is mandatory;
9 column date => type is 'timestamp', default is 'now()' is mandatory;
10 column active => type is 'boolean', default is 'true' is mandatory;
11 column bounce_count => type is 'int', default is 0 is mandatory;
12 column ext_id => type is 'text';
13
14 package Nos::Users;
15 use base qw(Jifty::DBI::Record);
16
17 # your custom code goes here.
18
19 1;

  ViewVC Help
Powered by ViewVC 1.1.26