Y
Hacker News
new
|
ask
|
show
|
jobs
by
jatins
391 days ago
What's the use case for database branching?
2 comments
tudorg
391 days ago
I would say it's primarily testing: either testing schema changes or testing your application changes. Copy-on-Write branches help because you can spin up an environment fast with relevant data from production (anonymized).
link
imtringued
391 days ago
If you use a branch per issue you can't have a single staging database. You need multiple databases.
link