运行 heroku db:pull 会影响我的生产数据库吗?
我是 Heroku 的新手,目前正在尝试查看 Heroku 上托管的应用程序数据库的副本。
当我运行“heroku db:pull --app myapp”时,我收到一条警告,如下所示:
警告:潜在破坏性操作 !此命令将影响应用程序: myapp
我很困惑从生产服务器中提取数据库的副本如何影响实时应用程序?最重要的是,它对生产中的数据库有什么影响吗?
谢谢, 齿轮。
I'm new to heroku and currently trying to check out a copy of an apps database thats hosted on heroku.
When I run "heroku db:pull --app myapp" I get a warning that looks like:
WARNING: Potentially Destructive Action
! This command will affect the app: myapp
I'm confused as to how pulling a copy of the db from the production server can affect the live app? Most importantly, does it do anything to the database which is on production?
Thanks,
gearoid.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,它不会对您的生产数据库做任何坏事,警告只是意味着当您拉取时它将破坏您的本地数据库,同样当您推送时它会破坏远程数据库。
no, it won't do anything bad to your production database, the warning simply means it will DESTROY your local database when you pull, likewise when you PUSH it would destroy the remote database.