herokuでアプリを公開しているものを更新するとき
まずherokuは**「gitと連携して、gitに保存した内容をデプロイ」**している。
なので、変更したいときは次のコマンドを使う
terminal
% git add -A
% git commit -m "Update application"
% git push heroku master
またテーブル追加や内容変更などをした場合は次のコマンドも実行する
terminal
% heroku run rails db:migrate