Better Database Migrations in Postgres
craigkerstiens.com
Better Database Migrations in Postgres
1–10 of 89 posts
Re: Better Database Migrations in Postgres
#2Re: Better Database Migrations in Postgres
#3Re: Better Database Migrations in Postgres
#4strong_migrations looks like a really useful tool. Are there similar ones for languages/frameworks besides Ruby/Rails?
Re: Better Database Migrations in Postgres
#5strong_migrations looks like a really useful tool. Are there similar ones for languages/frameworks besides Ruby/Rails?
For JVM languages, Flyway is quite popular (flywaydb.org) Django (python) has a builtin migration tool
Re: Better Database Migrations in Postgres
#6What's everyone favorite library for doing Postgres migrations using node? I'm using knex.js and still doing migrations mostly by hand.
Re: Better Database Migrations in Postgres
#7strong_migrations looks like a really useful tool. Are there similar ones for languages/frameworks besides Ruby/Rails?
For JVM languages, Flyway is quite popular (flywaydb.org) Django (python) has a builtin migration tool
One strong point of Flyway, besides being "just SQL", is the repeatable migrations, you can update your stored procedures, views and table documentation in the same version controlled source files without making a new copy in a new migration file for each change.
Re: Better Database Migrations in Postgres
#8What's everyone favorite library for doing Postgres migrations using node? I'm using knex.js and still doing migrations mostly by hand.
Re: Better Database Migrations in Postgres
#9Earlier quoted context omitted.
For JVM languages, Flyway is quite popular (flywaydb.org) Django (python) has a builtin migration tool
Original author here, thanks for sharing it. Will update the post to add it to the list of good tools.
DbUp, upon which Piggy is based, is a popular option in the .NET space: https://dbup.github.io/.
(Neither attempt the protections that I think strong_migrations is offering - TIL!)