How to migrate from SQLite to PostgreSQL (Rails)

后端 未结 2 1766
天命终不由人
天命终不由人 2021-01-01 17:35

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 c

相关标签:
2条回答
  • 2021-01-01 17:40

    sqlite3 development.db .dump | psql dbname username

    0 讨论(0)
  • 2021-01-01 18:03

    Sequel will help you

    gem install sequel
    
    sequel -C sqlite://db/development.sqlite3 postgres://username:password@localhost/dbname
    
    0 讨论(0)
提交回复
热议问题