The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package # hide from PAUSE
    Director;

use strict;
use base 'DBIC::Test::SQLite';

__PACKAGE__->set_table('Directors');
__PACKAGE__->columns('All' => qw/ Name Birthday IsInsane /);

sub create_sql {
  return qq{
      name                    VARCHAR(80),
      birthday                INTEGER,
      isinsane                INTEGER
  };
}

1;