Eric Guo's blog.cloud-mes.com

Hoping writing JS, Ruby & Rails and Go article, but fallback to DevOps note

Migrate Sqlite3 to Postgres Using Sequel

Permalink

I used to using mysql-postgresql-converter, but due to my new site is using sqlite3, so that tips not working.

But I found a much general DB tools at SO

gem install sequel
sequel -C sqlite:'/Users/user_name/git/sso/thape_web/db/development.sqlite3' postgres://localhost/thape_web_dev

Comments