how did I miss this?
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / lib / DBICVersion_v1.pm
index 56c01e2..3ceb805 100644 (file)
@@ -1,49 +1,32 @@
-package DBICVersion::Table;
+package DBICVersion::Foo1;
 
 use base 'DBIx::Class::Core';
 use strict;
 use warnings;
 
-__PACKAGE__->table('TestVersion');
-
-__PACKAGE__->add_columns
-    ( 'Version' => {
-        'data_type' => 'INTEGER',
-        'is_auto_increment' => 1,
-        'default_value' => undef,
-        'is_foreign_key' => 0,
-        'is_nullable' => 0,
-        'size' => ''
-        },
-      'VersionName' => {
-        'data_type' => 'VARCHAR',
-        'is_auto_increment' => 0,
-        'default_value' => undef,
-        'is_foreign_key' => 0,
-        'is_nullable' => 0,
-        'size' => '10'
-        },
-      );
-
-__PACKAGE__->set_primary_key('Version');
-
-package DBICVersion::Schema;
+__PACKAGE__->table('Foo');
+
+__PACKAGE__->add_columns(
+       foo => {
+               data_type => 'INTEGER',
+               is_auto_increment => 1,
+       },
+       bar => {
+               data_type => 'VARCHAR',
+               size => '10'
+       },
+);
+
+__PACKAGE__->set_primary_key('foo');
+
+package DBICVersion::Schema1;
 use base 'DBIx::Class::Schema';
 use strict;
 use warnings;
 
 our $VERSION = '1.0';
 
-__PACKAGE__->register_class('Table', 'DBICVersion::Table');
-__PACKAGE__->load_components('+DBIx::Class::Schema::Versioned');
-
-sub upgrade_directory
-{
-    return 't/var/';
-}
-
-sub ordered_schema_versions {
-  return('1.0','2.0','3.0');
-}
+__PACKAGE__->register_class('Foo', 'DBICVersion::Foo1');
+__PACKAGE__->load_components('DeploymentHandler::VersionStorage::Standard::Component');
 
 1;