extends 'DBIx::Class::DeploymentHandler::DeployMethod::SQL::Translator',
method _ddl_schema_consume_filenames($type, $version) {
- return [$self->_ddl_schema_produce_filename($type, $version)]
+ return [$self->_ddl_schema_produce_filename($type, $version)]
}
method _ddl_schema_produce_filename($type, $version) {
}
method _ddl_schema_up_consume_filenames($type, $versions) {
- return [$self->_ddl_schema_up_produce_filename($type, $versions)]
+ return [$self->_ddl_schema_up_produce_filename($type, $versions)]
}
__PACKAGE__->meta->make_immutable;
1;
+
+__END__
+
+=head1 THIS SUCKS
+
+Yeah, this old Deprecated thing is a drag. It can't do downgrades, it can only
+use a single .sql file for migrations, it has no .pl support. You should
+totally switch! Here's how:
+
+ my $init_part = ref $schema;
+ $init_part =~ s/::/-/g;
+ opendir my $dh, 'sql';
+ for (readdir $dh) {
+ if (/\Q$init_part\E-(.*)-(.*)(?:-(.*))?/) {
+ if (defined $3) {
+ cp $_, $dh->deploy_method->_ddl_schema_up_produce_filename($3, [$1, $2]);
+ } else {
+ cp $_, $dh->deploy_method->_ddl_schema_produce_filename($2, $1);
+ }
+ }
+ }
+
+vim: ts=2 sw=2 expandtab
__END__
+=head1 THIS SUCKS
+
+Here's how to convert from that crufty old Deprecated VersionStorage to a shiny
+new Standard VersionStorage:
+
+ my $s = My::Schema->connect(...);
+ my $dh = DeploymentHandler({
+ schema => $s,
+ });
+
+ $dh->prepare_version_storage_install;
+ $dh->install_version_storage;
+
+ my @versions = $s->{vschema}->resultset('Table')->search(undef, {
+ order_by => 'installed',
+ })->get_column('version')->all;
+
+ $dh->version_storage->add_database_vesion({ version => $_ })
+ for @versions;
+
vim: ts=2 sw=2 expandtab