/[A3C]/lib/A3C/Model/StrixChange.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 /lib/A3C/Model/StrixChange.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 243 - (hide annotations)
Wed Oct 1 21:03:14 2008 UTC (15 years, 6 months ago) by dpavlin
File size: 423 byte(s)
added new modes to hold stats about strix instance usage

1 dpavlin 243 use strict;
2     use warnings;
3    
4     package A3C::Model::StrixChange;
5     use Jifty::DBI::Schema;
6    
7     use A3C::Record schema {
8    
9     column instance =>
10     label is _('Instance identifier'),
11     is mandatory,
12     is disctinct,
13     is immutable,
14     is indexed;
15    
16     column modifications =>
17     label is _('Content modifications'),
18     type is 'int';
19     is mandatory;
20    
21     };
22    
23     sub since { '0.0.6' }
24    
25     # Your model-specific methods go here.
26    
27     use A3C::DefaultACL;
28    
29     1;
30    

  ViewVC Help
Powered by ViewVC 1.1.26