We can now generate our own test schema
[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(
7   'foo' => { data_type => 'integer' },
8   'bar' => { data_type => 'integer' },
9   'hello' => { data_type => 'integer' },
10   'goodbye' => { data_type => 'integer' },
11 );
12 DBICTest::Schema::FourKeys->set_primary_key(qw/foo bar hello goodbye/);
13
14 1;