Catalyst RDBO Store for authentication.
[blog.pm-common-perl-mods.git] / Catalyst-Authentication-Store-RDBO / t / lib / TestApp / RDBO / Role.pm
blob4d8f221d061eac89de3747ca331041aa7198751d
1 package TestApp::RDBO::Role;
3 use strict;
5 use base qw(TestApp::DB::Object);
7 __PACKAGE__->meta->setup(
8 table => 'role',
10 columns => [ qw/id role/ ],
12 primary_key_columns => [ qw/ id / ],
15 =head1 AUTHOR
17 vti
19 =head1 LICENSE
21 This library is free software, you can redistribute it and/or modify
22 it under the same terms as Perl itself.
24 =cut