如何从 SQLite 迁移到 PostgreSQL (Rails)
我是一名 DB 菜鸟,所以请善待我。
我在通过 Taps gem 将 SQLite DB 推送到 Heroku 时遇到一些问题。与他们交谈时,他们告诉我解决方案之一可以是将我的数据库从 SQLite 本地转换为 PostgreSQL。 有没有简单的方法可以做到这一点?
谢谢
更多信息: - 来自 Rails 应用程序的数据库 - 我使用的是 Mac OS X - 刚刚通过 macports 安装了 PostgreSQL
I'm a DB noob so please be kind with me.
I'm having some issues pushing my SQLite DB to Heroku via taps gem. Talking with them, they told me one of the solutions could be converting locally my DB from SQLite to PostgreSQL.
Is there an easy way to do so?
Thanks
More info:
- DB from Rails app
- I'm on Mac OS X
- Just installed PostgreSQL via macports
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
sqlite3开发.db .dump | psql 数据库名用户名
sqlite3 development.db .dump | psql dbname username
续集将为您提供帮助
Sequel will help you