如何从 SQLite 迁移到 PostgreSQL (Rails)

发布于 2024-10-03 10:26:50 字数 242 浏览 4 评论 0原文

我是一名 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

聊慰 2024-10-10 10:26:50

sqlite3开发.db .dump | psql 数据库名用户名

sqlite3 development.db .dump | psql dbname username

拍不死你 2024-10-10 10:26:50

续集将为您提供帮助

gem install sequel

sequel -C sqlite://db/development.sqlite3 postgres://username:password@localhost/dbname

Sequel will help you

gem install sequel

sequel -C sqlite://db/development.sqlite3 postgres://username:password@localhost/dbname
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文