apparently working additional parent support
[dbsrgits/DBIx-Class-ResultSource-MultipleTableInheritance.git] / t / lib / MTITest / Result / Foo.pm
index 450271d..d8b8e1b 100644 (file)
@@ -11,7 +11,7 @@ __PACKAGE__->table('foo');
 
 __PACKAGE__->add_columns(
   id => { data_type => 'integer', is_auto_increment => 1 },
-  a => { data_type => 'integer' }
+  a => { data_type => 'integer', is_nullable => 1 }
 );
 
 __PACKAGE__->set_primary_key('id');