some initial (untested) migration doc
[dbsrgits/DBIx-Class-DeploymentHandler.git] / lib / DBIx / Class / DeploymentHandler / DeployMethod / SQL / Translator / Deprecated.pm
index 19a7370..72a4939 100644 (file)
@@ -7,7 +7,7 @@ use File::Spec::Functions;
 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) {
@@ -33,9 +33,32 @@ method _ddl_schema_up_produce_filename($type, $versions, $dir) {
 }
 
 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