Comment by Shorel

Comment by Shorel a day ago

4 replies

Good may be an alternative to Alembic, so we can get rid of the Python requirement =)

(Checks it out...)

Ahh, this is also Alembic.

leosanchez a day ago

I use goose[1] for db migrations.

[1]: https://github.com/pressly/goose

  • ghthor a day ago

    Goose is great, been using it for many years and is my goto db schema manager.

    Love how you can write you migrations in go using goose and mix in raw sql migrations as well. Allows for great flexibility when doing complicated migrations and enables writing unit tests for migrations with regular go test