3,765
回編集
差分
Heroku
,→ローカルのテーブルをCSVで書き出しHEROKUのテーブルにコピーする
=# COPY descriptions(content,user_id,jiin_id,account_id,created_at,updated_at,money) TO '/Users/jq/environment/table_data/descriptions.csv';
heroku pg:psql -c "select setval ('descriptions_id_seq', 1, false)" ←必要ならば ←シーケンスのリセット
heroku pg:psql -c "\COPY descriptions(content,user_id,jiin_id,account_id,created_at,updated_at,money) FROM '/Users/jq/environment/table_data/descriptions.csv'"