Efficient PostgreSQL Schema Migrations with Node.js and Graphile Migrate

preview_player
Показать описание
Effective Database Migrations using Graphile Migrate and SQL in Postgres with NodeJS / Bun

This script is about managing PostgreSQL schemas in a trackable, consistent, and reproducible way, focusing on the database migration tool, Graphile Migrate. The tutorial goes through key principles to follow when writing database migrations, the importance of writing migrations in SQL, and how the tool fosters a fast and seamless development workflow. The script also outlines why it's important to write your migrations in SQL and in an idempotent way. It discourages writing rollback scripts and encourages writing tests for the database instead. It also briefly touches on the comparison between PostgreSQL and MongoDB.

00:00 Introduction to Database Migrations
00:48 Why Use Graphile Migrate?
01:35 Setting Up the Database
02:06 Creating the Database Structure
03:46 Running the Migration
04:57 Principles of Writing Database Migrations
08:15 Creating a Complex Migration
13:08 Testing the Migration
13:58 Recap and Conclusion

#postgres #database #sql
Рекомендации по теме
Комментарии
Автор

How would this work for a team of db devs? Would we need to work from the same branch with frequent pull/push or separate branches and merge back into a community branch where conflicts are resolved?

Jason-wxtv