/[Arh]/lib/Arh/Model/Location.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/Arh/Model/Location.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2 - (show annotations)
Thu Nov 29 00:34:22 2007 UTC (16 years, 4 months ago) by dpavlin
File size: 367 byte(s)
basic models
1 use strict;
2 use warnings;
3
4 package Arh::Model::Location;
5 use Jifty::DBI::Schema;
6
7 use Arh::Record schema {
8
9 column name =>
10 label is _("Name");
11
12 column address =>
13 label is _("Address");
14
15 column city =>
16 label is _("City");
17
18 column country =>
19 label is _("Country");
20
21 column note =>
22 label is _("Note");
23
24 };
25
26 # Your model-specific methods go here.
27
28 1;
29

  ViewVC Help
Powered by ViewVC 1.1.26