Forgotten debugging
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / Director.pm
CommitLineData
c6d74d3e 1package # hide from PAUSE
2 Director;
ea2e61bf 3
ea2e61bf 4use strict;
5use base 'DBIx::Class::Test::SQLite';
6
7__PACKAGE__->set_table('Directors');
8__PACKAGE__->columns('All' => qw/ Name Birthday IsInsane /);
9
10sub create_sql {
11 return qq{
12 name VARCHAR(80),
13 birthday INTEGER,
14 isinsane INTEGER
15 };
16}
17
181;
19