我想将每个部署中的Staging和Production数据库同步到Staging。
我想要完成的伪代码。
1. backup production database.
2. restore staging database with the production one.
3. run migrations into the staging database.
我不太明白如何在Heroku中做到这一点。文件系统是只读的,我无法安装mysql-client and do a
mysqldump`。
我要尝试的是向另一台服务器发出请求(该服务器安装了mysql-client)。
我的堆栈是Node.js
对此有何其他想法?