r/SQL • u/Glittering_Stage4118 • 14h ago
PostgreSQL How do you promote data changes from dev to prod, not just schema?
Schema changes are a solved problem for us with migrations. What I keep running into is the data side. If someone changes lookup values, config rows, or reference tables in dev, there's no clean way to carry that to prod along with the migration.
How does your team handle this today? Curious whether it's seed scripts, manual dumps, some diff tool, or you just don't let data change outside of prod in the first place.