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

Parent Directory Parent Directory | Revision Log Revision Log


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

1 use strict;
2 use warnings;
3
4 package A3C::Model::StrixVisit;
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 hits =>
17 label is _('Visits'),
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