X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FFourKeys.pm;h=f9112faa039fc18cf20936ab8572f1d9f34652a0;hb=0009fa4905ab7f4585c4b470bfe049666bce8e17;hp=be189529cee2874c5e7422fb04c5f57a14a36dcd;hpb=11b78bd6f6d77f58d9c5ae301e94ca57e892f592;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/Schema/FourKeys.pm b/t/lib/DBICTest/Schema/FourKeys.pm index be18952..f9112fa 100644 --- a/t/lib/DBICTest/Schema/FourKeys.pm +++ b/t/lib/DBICTest/Schema/FourKeys.pm @@ -3,7 +3,12 @@ package DBICTest::Schema::FourKeys; use base 'DBIx::Class::Core'; DBICTest::Schema::FourKeys->table('fourkeys'); -DBICTest::Schema::FourKeys->add_columns(qw/foo bar hello goodbye/); +DBICTest::Schema::FourKeys->add_columns( + 'foo' => { data_type => 'integer' }, + 'bar' => { data_type => 'integer' }, + 'hello' => { data_type => 'integer' }, + 'goodbye' => { data_type => 'integer' }, +); DBICTest::Schema::FourKeys->set_primary_key(qw/foo bar hello goodbye/); 1;