Extra test to demonstrate has_one working, and a POD clarification of multicreate
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Artwork.pm
index 10e07ce..4eecef5 100644 (file)
@@ -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');