DBIx-Class-DeploymentHandler icon indicating copy to clipboard operation
DBIx-Class-DeploymentHandler copied to clipboard

Results 9 DBIx-Class-DeploymentHandler issues
Sort by recently updated
recently updated
newest added

``` SQL::Translator::Diff::schema_diff(): producer_args is deprecated -- it does not go straight to the producer, it goes to the internal sqlt object. Please use sqlt_args, which reflects how it's used at...

This seems wonky because if I deploy a version I should be on that version - but I also understand that deploy is handled directly by the `HandlesDeploy`. But I'm...

Currently the code is very DBIC centric. You must connect with a DBIC schema at the very least. We should factor out the "runner" part of the DM so that...

As the title says, the sqlt_deploy-hook can end up getting called twice, once for the versions tables only it seems and once for everything else.

Early on DBICDH actually generated an array of SQL serialized as JSON (1f0d0633940a59386e5c0ebec602d0650a3694ed). For some dumb reason (ff7f0e7d4be69cb76ad7fc18ac22249a189126a5 ?) I removed the code (09bc35e3b405fbac725a45739e15cf30543d7f77). This should be put back for...

For a ->prepare_upgrade to work correctly, a ->prepare_deploy must be called first. This creates deploy ddl's along with the yml's which is contrary to good advice regarding using just one...

Instead of having the silly deprecated storage and deploy method, we should instead have a script that migrates an old storage or set of scripts to the new format, so...

### Why direction of migration is required Imagine this steps: V1 | V2 | V3 --- | --- | --- X | Y:RX | X Where `X` is column name,...

Fixes: https://github.com/frioux/DBIx-Class-DeploymentHandler/issues/65 I implemented the similar tests for [SQL::Translator](https://github.com/dbsrgits/sql-translator/pull/189), `DBIx::Class::DeploymentHandler` and [DBIx::Class::Migration](https://github.com/jjn1056/DBIx-Class-Migration/pull/154) `SQL::Translator` test work well (because writing to a file is not involved). `DBIx::Class::DeploymentHandler` does not work well. When...