repo.or.cz
/
blog.pm-common-perl-mods.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initial version of Form::Processor::Model::RDBO
[blog.pm-common-perl-mods.git]
/
Form-Processor-Model-RDBO
/
t
/
lib
/
RDBO
/
Prior.pm
blob
0b98a754e1cce7c5c793ea43b1c6fc0161eb2ffb
1
package
RDBO
::
Prior
;
2
3
use
strict
;
4
5
use
base
qw(RDBO::DB::Object)
;
6
7
__PACKAGE__
->
meta
->
setup
(
8
table
=>
'priors'
,
9
10
columns
=> [
11
id
=> {
type
=>
'serial'
},
12
name
=> {
type
=>
'varchar'
,
length
=>
255
},
13
],
14
15
primary_key_columns
=> [
'id'
],
16
);
17
18
1
;
19