added datetime parser types for the dbs I can find them for
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / FourKeys.pm
CommitLineData
c6d74d3e 1package # hide from PAUSE
2 DBICTest::Schema::FourKeys;
a02675cd 3
4use base 'DBIx::Class::Core';
5
11b78bd6 6DBICTest::Schema::FourKeys->table('fourkeys');
0009fa49 7DBICTest::Schema::FourKeys->add_columns(
8 'foo' => { data_type => 'integer' },
9 'bar' => { data_type => 'integer' },
10 'hello' => { data_type => 'integer' },
11 'goodbye' => { data_type => 'integer' },
12);
11b78bd6 13DBICTest::Schema::FourKeys->set_primary_key(qw/foo bar hello goodbye/);
a02675cd 14
151;