Initial version of Form::Processor::Model::RDBO
[blog.pm-common-perl-mods.git] / Form-Processor-Model-RDBO / t / lib / RDBO / Prior.pm
blob0b98a754e1cce7c5c793ea43b1c6fc0161eb2ffb
1 package RDBO::Prior;
3 use strict;
5 use base qw(RDBO::DB::Object);
7 __PACKAGE__->meta->setup(
8 table => 'priors',
10 columns => [
11 id => { type => 'serial' },
12 name => { type => 'varchar', length => 255 },
15 primary_key_columns => [ 'id' ],