X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FArtwork.pm;h=4eecef5df731ea86d1669ef48c2960ddbc8677d5;hb=9c3018b6b589a8250b75a3db451a5baac9c6c3df;hp=10e07ce37fbf551310a52985f628224d40bbef82;hpb=d563309646cd5a6d156ffb3d601f9d914926831b;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/Schema/Artwork.pm b/t/lib/DBICTest/Schema/Artwork.pm index 10e07ce..4eecef5 100644 --- a/t/lib/DBICTest/Schema/Artwork.pm +++ b/t/lib/DBICTest/Schema/Artwork.pm @@ -1,12 +1,13 @@ package # hide from PAUSE DBICTest::Schema::Artwork; -use base qw/DBIx::Class::Core/; +use base qw/DBICTest::BaseResult/; __PACKAGE__->table('cd_artwork'); __PACKAGE__->add_columns( 'cd_id' => { data_type => 'integer', + is_nullable => 0, }, ); __PACKAGE__->set_primary_key('cd_id');