Results 62 comments of Joao M

Could you provide a small example of your base.sql and migration files to help me to reproduce your issue at my side?

OK, I found the issue and created PR #40. About the `-vvv`, it is the very verbose mode. Without that, only the programs only show the error.

Hello, it is possible to have a base from different versions. Basically, the system uses the base.sql [here](https://github.com/byjg/migration/blob/master/src/Migration.php#L227) and we start from "0" [here](https://github.com/byjg/migration/blob/master/src/Migration.php#L240). So, it means, if we manage...

Hello @bancer , We have two questions here. Let's start by the simpler one: > We also find it quite useful to have descriptive migration file names like 001234_add_index_to_users_table.sql that...

Thank you for your comment :) It makes me feel like I'm on the right track. Right now I dont have a single method to check if exists migration. I...

I implemented `isDatabaseVersioned` method. Until I create a new version you can use the development version `4.1.0.x-dev`

It is always hard when a migration fails and there is no "correct" solution. As you described the error happened when you applied the version 6. The way I think...

Yes, you're correct. But when the migration fail is nothing much we can do in an automated way. We need to validate what happened, check if we won't lose data,...

Do you have any suggestion on how handle this?