The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package TestApp::Role;

use strict;

use base qw(TestApp::DB::Object);

__PACKAGE__->meta->setup(
    table   => 'role',

    columns => [
        id   => { type => 'integer' },
        role => { type => 'text' },
    ],

    primary_key_columns => [ 'id' ],
);

1;