X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FFourKeys.pm;h=9966cfbc407343cafce16364ee99968732d41783;hb=97c96475;hp=3fedb52dcb87a7b37ae75552e92a79ffbce5cf90;hpb=660cf1be74795a5a5784f413741816413a724c1a;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/Schema/FourKeys.pm b/t/lib/DBICTest/Schema/FourKeys.pm index 3fedb52..9966cfb 100644 --- a/t/lib/DBICTest/Schema/FourKeys.pm +++ b/t/lib/DBICTest/Schema/FourKeys.pm @@ -9,7 +9,8 @@ __PACKAGE__->add_columns( 'bar' => { data_type => 'integer' }, 'hello' => { data_type => 'integer' }, 'goodbye' => { data_type => 'integer' }, - 'sensors' => { data_type => 'character' }, + 'sensors' => { data_type => 'character', size => 10 }, + 'read_count' => { data_type => 'integer', is_nullable => 1 }, ); __PACKAGE__->set_primary_key(qw/foo bar hello goodbye/);