Matt
Matt
Not on docker hub. Yes, please feel free to open any PRs to help improve! Thanks!
What's the best namespace to host it? Ideally the `docker push` happens within travis.
sounds good. I can do that. You said you had some ideas for Dockerfile improvements? Do you want to create a PR with a Dockerfile in the `/cli` dir?
I don't have any preferences. The smaller the image, the better.
Thanks for the detailed write-up. This is a problem. Do you think an `onError` function that each driver executes in case of an error would fix this? In case of...
This is a tough one. https://github.com/mattes/migrate/issues/13 explains why no transaction (sql.Tx) is enforced by the driver. > I guess this could lead to migrations being run without transactions, if a...
Go 1.9 might have solved it for us: https://golang.org/doc/go1.9#database/sql The new DB.Conn method returns the new Conn type representing an exclusive connection to the database from the connection pool. All...
package database now has an Error struct. https://github.com/mattes/migrate/blob/master/database/error.go It can be further wrapped by package migrate down the road to extend it with more fields like: ``` Identifier string Direction...
can you open a PR for this to fix it?
Thanks for your feedback! One migration file can have multiple statements. It's up to the user to wrap several statements into transactions. Before that the driver was doing that which...