You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mysql -u root ham_media_app_development < backup.sql
mysql => psql 移行
pgloader install
$ brew install pgloader
heroku mysql からローカルの psql にデータコピー
pgloader の command を command.load として作成
load database
from <heroku mysql>
into postgresql://<username>@localhost/ham_media_app_development
alter schema 'ham_media_app_development' rename to 'public';
heroku mysql
heroku の db を export
heroku の db に import
ローカルに import
mysql -u root ham_media_app_development < backup.sql
mysql => psql 移行
pgloader install
heroku mysql からローカルの psql にデータコピー
command.load
として作成ローカル psql から dump
dump したものをリモートにコピー
The text was updated successfully, but these errors were encountered: