From Code to Community: Sponsoring The Perl and Raku Conference 2025 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'
},
'NewVersionName' => {
'data_type' => 'VARCHAR',
'is_auto_increment' => 0,
'default_value' => undef,
'is_foreign_key' => 0,
'is_nullable' => 1,
'size' => '20'
},
'ExtraColumn' => {
'data_type' => 'VARCHAR',
'is_auto_increment' => 0,
'default_value' => undef,
'is_foreign_key' => 0,
'is_nullable' => 1,
'size' => '20'
}
);
__PACKAGE__->set_primary_key('Version');
use strict;
our $VERSION = '3.0';
__PACKAGE__->register_class('Table', 'DBICVersion::Table');
__PACKAGE__->load_components('+DBIx::Class::Schema::Versioned');
__PACKAGE__->upgrade_directory("t/var/versioning_ddl-$$");
__PACKAGE__->backup_directory("t/var/versioning_backup-$$");
1;