X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FFourKeys.pm;h=442a3e0347afc18f7a2b4fb55141563fa272971b;hb=851437691480515dfef50e5e170b77ff51d07620;hp=3fedb52dcb87a7b37ae75552e92a79ffbce5cf90;hpb=660cf1be74795a5a5784f413741816413a724c1a;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/lib/DBICTest/Schema/FourKeys.pm b/t/lib/DBICTest/Schema/FourKeys.pm index 3fedb52..442a3e0 100644 --- a/t/lib/DBICTest/Schema/FourKeys.pm +++ b/t/lib/DBICTest/Schema/FourKeys.pm @@ -1,4 +1,4 @@ -package # hide from PAUSE +package # hide from PAUSE DBICTest::Schema::FourKeys; use base qw/DBICTest::BaseResult/; @@ -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 => 'int', is_nullable => 1 }, ); __PACKAGE__->set_primary_key(qw/foo bar hello goodbye/);