8

When using heroku addons:create, one may specify a version, e.g. as shown in this Heroku blog post introducing Postgres 9.5:

heroku addons:create heroku-postgresql --version=9.5
nicholaides
  • 19,211
  • 12
  • 66
  • 82
davetapley
  • 17,000
  • 12
  • 60
  • 86

1 Answers1

4
{
  "addons": [
    {
      "plan": "heroku-postgresql",
      "options": {
        "version": "9.5"
      }
    }
  ]
}

https://devcenter.heroku.com/articles/app-json-schema#example-app-json

Hayden
  • 2,082
  • 1
  • 14
  • 18
  • 1
    Yey! Looks like it was added sometime between now and [back in May](https://web.archive.org/web/20160508102505/https://devcenter.heroku.com/articles/app-json-schema#addons) :) – davetapley Jul 20 '16 at 16:08