如何从SQLite迁移到PostgreSQL(Rails)

Leo*_*rna 14 sqlite postgresql ruby-on-rails heroku database-migration

我是一个DB菜鸟,所以请和我好心.

我有一些问题通过点击gem将我的SQLite DB推送到Heroku.与他们交谈,他们告诉我其中一个解决方案可能是将我的数据库从SQLite转换为PostgreSQL.有一个简单的方法吗?

谢谢

更多信息: - 来自Rails应用程序的数据库 - 我在Mac OS X上 - 刚刚通过macports安装了PostgreSQL

jxp*_*777 17

sqlite3 development.db .dump | psql dbname username

  • 请注意,某些数据类型需要转换,http://stackoverflow.com/a/4581921/1099531 (6认同)

Mik*_*ski 6

续集会帮助你

gem install sequel

sequel -C sqlite://db/development.sqlite3 postgres://username:password@localhost/dbname
Run Code Online (Sandbox Code Playgroud)