/[SQLSession]/trunk/lib/SQLSession/Model/Query.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 /trunk/lib/SQLSession/Model/Query.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 17 - (show annotations)
Sun Dec 3 14:46:08 2006 UTC (17 years, 4 months ago) by dpavlin
File size: 591 byte(s)
tweak model
1 use strict;
2 use warnings;
3
4 package SQLSession::Model::Query;
5 use Jifty::DBI::Schema;
6 use SQLSession::Model::Database;
7
8 use SQLSession::Record schema {
9 column name =>
10 type is 'text',
11 label is 'Name of query',
12 distinct,
13 hints is 'Short name for this query',
14 mandatory;
15
16 column sql_query =>
17 type is 'text',
18 label is 'SQL query',
19 mandatory,
20 distinct,
21 hints is 'Use this area to enter SQL query',
22 render as 'textarea';
23
24 column on_database =>
25 refers_to SQLSession::Model::Database,
26 label is 'on database',
27 mandatory;
28 };
29
30 # Your model-specific methods go here.
31
32 1;
33

  ViewVC Help
Powered by ViewVC 1.1.26