let you install to a given point in the version history
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / lib / DBICVersion_v3.pm
index eb11caa..e7a94ea 100644 (file)
@@ -17,11 +17,13 @@ __PACKAGE__->add_columns(
        },
        baz => {
                data_type => 'VARCHAR',
-               size => '10'
+               size => '10',
+               is_nullable => 1,
        },
        biff => {
                data_type => 'VARCHAR',
-               size => '10'
+               size => '10',
+               is_nullable => 1,
        },
 );
 
@@ -35,6 +37,6 @@ use warnings;
 our $VERSION = '3.0';
 
 __PACKAGE__->register_class('Foo', 'DBICVersion::Foo');
-__PACKAGE__->load_components('DeploymentHandler::Component');
+__PACKAGE__->load_components('DeploymentHandler::VersionStorage::Standard::Component');
 
 1;