/[SVNBrowser]/trunk/lib/SVNBrowser/Model/Action.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

Annotation of /trunk/lib/SVNBrowser/Model/Action.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 53 - (hide annotations)
Mon Mar 19 17:25:21 2007 UTC (17 years, 2 months ago) by dpavlin
File size: 505 byte(s)
change mantory -> is mandatory to please new Jifty
1 dpavlin 1 use strict;
2     use warnings;
3    
4     package SVNBrowser::Model::Action;
5    
6     use Jifty::DBI::Schema;
7    
8     use SVNBrowser::Record schema {
9    
10     column revision =>
11     type is 'int',
12 dpavlin 26 is indexed,
13 dpavlin 53 # refers_to SVNBrowser::Model::Revision by 'revision',
14     is mandatory;
15 dpavlin 1
16     column type =>
17     type is 'char',
18     valid are qw( A M D ),
19 dpavlin 53 is mandatory;
20 dpavlin 1
21     column branch =>
22     type is 'text',
23 dpavlin 26 is indexed,
24 dpavlin 53 is mandatory;
25 dpavlin 1
26     column rel_path =>
27     type is 'text',
28 dpavlin 26 is indexed,
29 dpavlin 53 is mandatory;
30 dpavlin 1
31     };
32    
33     # Your model-specific methods go here.
34    
35     1;
36    

  ViewVC Help
Powered by ViewVC 1.1.26