X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FSerialized.pm;h=d7737bdf6dc10412e0af087be8dc3278d507c31d;hb=123df5269e2a19f93ff072bbf92832fb23d19f4c;hp=687dcd1bd244b4d880451247bb211511f2e95faf;hpb=11357d09a80364da23aefbb5650da15a768505a8;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/lib/DBICTest/Schema/Serialized.pm b/t/lib/DBICTest/Schema/Serialized.pm index 687dcd1..d7737bd 100644 --- a/t/lib/DBICTest/Schema/Serialized.pm +++ b/t/lib/DBICTest/Schema/Serialized.pm @@ -1,11 +1,11 @@ package # hide from PAUSE DBICTest::Schema::Serialized; -use base 'DBIx::Class::Core'; +use base qw/DBICTest::BaseResult/; __PACKAGE__->table('serialized'); __PACKAGE__->add_columns( - 'id' => { data_type => 'integer' }, + 'id' => { data_type => 'integer', is_auto_increment => 1 }, 'serialized' => { data_type => 'text' }, ); __PACKAGE__->set_primary_key('id');