Trailing WS crusade - got to save them bits
[dbsrgits/DBIx-Class-Historic.git] / t / lib / DBICTest / Schema / CD_to_Producer.pm
index cf18c4e..278396e 100644 (file)
@@ -1,12 +1,13 @@
-package # hide from PAUSE 
+package # hide from PAUSE
     DBICTest::Schema::CD_to_Producer;
 
-use base 'DBIx::Class::Core';
+use base qw/DBICTest::BaseResult/;
 
 __PACKAGE__->table('cd_to_producer');
 __PACKAGE__->add_columns(
   cd => { data_type => 'integer' },
   producer => { data_type => 'integer' },
+  attribute => { data_type => 'integer', is_nullable => 1 },
 );
 __PACKAGE__->set_primary_key(qw/cd producer/);