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