Closed TimidRobot closed 9 months ago
Production upgraded per Upgrading the Version of a Heroku Postgres Database | Heroku Dev Center:
Initialize follower:
heroku addons:create heroku-postgresql:standard-0 --follow postgresql-sinuous-94712
Warning: heroku update available from 8.5.0 to 8.10.0.
Track status and wait for completion
heroku pg:wait
Enable maintenance mode
heroku maintenance:on
Verify follower is caught up:
heroku pg:info
Upgrade follower database
heroku pg:upgrade postgresql-flat-93199
Track status and wait for completion
heroku pg:wait
Promote new Postgre 15 database
heroku pg:promote postgresql-flat-93199
Verify promotion:
heroku pg:info
Disable maintenance
heroku maintenance:off
Verify app with new database at: https://legaldb.creativecommons.org/
Destroy v12 database
heroku addons:destroy postgresql-sinuous-94712
Problem
Description
Ensure PostgreSQL is v15 in all locations (both local dev and production Heroku)
Additional context
Implementation