The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
__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');
use strict;
our $VERSION = '1.0';
__PACKAGE__->register_class('Table', 'DBICVersion::Table');
__PACKAGE__->load_components('+DBIx::Class::Schema::Versioned');
__PACKAGE__->upgrade_directory("t/var/versioning_ddl-$$");
sub ordered_schema_versions {
return('1.0','2.0','3.0');
}
1;