be189529cee2874c5e7422fb04c5f57a14a36dcd
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / FourKeys.pm
1 package DBICTest::Schema::FourKeys;
2
3 use base 'DBIx::Class::Core';
4
5 DBICTest::Schema::FourKeys->table('fourkeys');
6 DBICTest::Schema::FourKeys->add_columns(qw/foo bar hello goodbye/);
7 DBICTest::Schema::FourKeys->set_primary_key(qw/foo bar hello goodbye/);
8
9 1;