X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FFourKeys_to_TwoKeys.pm;h=a208135655936e720365fb196b3c5104b7ac5601;hb=98def3efbed614ff1514c79b9da7e03b5ceb06c0;hp=53871367937ac86916e4f5a86c255e94ed427f45;hpb=660cf1be74795a5a5784f413741816413a724c1a;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/Schema/FourKeys_to_TwoKeys.pm b/t/lib/DBICTest/Schema/FourKeys_to_TwoKeys.pm index 5387136..a208135 100644 --- a/t/lib/DBICTest/Schema/FourKeys_to_TwoKeys.pm +++ b/t/lib/DBICTest/Schema/FourKeys_to_TwoKeys.pm @@ -1,6 +1,9 @@ -package # hide from PAUSE +package # hide from PAUSE DBICTest::Schema::FourKeys_to_TwoKeys; +use warnings; +use strict; + use base qw/DBICTest::BaseResult/; __PACKAGE__->table('fourkeys_to_twokeys'); @@ -12,6 +15,7 @@ __PACKAGE__->add_columns( 't_artist' => { data_type => 'integer' }, 't_cd' => { data_type => 'integer' }, 'autopilot' => { data_type => 'character' }, + 'pilot_sequence' => { data_type => 'integer', is_nullable => 1 }, ); __PACKAGE__->set_primary_key( qw/f_foo f_bar f_hello f_goodbye t_artist t_cd/