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

use strict;
use warnings;

use base 'TestDB';

__PACKAGE__->schema(
    table        => 'author_admin',
    columns      => [qw/author_id beard/],
    primary_keys => ['author_id'],
);

1;