Obromios
Obromios

Reputation: 16373

Upgrading postgresql database on heroku

Heroku provide instructions for provisioning a new postgresql database, which involves a command of the form

heroku addons:create heroku-postgresql:standard-0

where the text after postgresql: is a key to the level of database. Presumably standard-0 is the lowest level of standard. It took me about ten minutes, using the web interface to be reasonably sure that hobby-basic is the key for the highest level of basic. Can someone please provide a table that gives the key for each of the database levels so we do not have to guess?

Upvotes: 0

Views: 69

Answers (1)

Simone Carletti
Simone Carletti

Reputation: 176352

The different levels, along with the keys are available in the Heroku Postgres add-on page.

You can install the add-on directly from there, or use one of the keys you can extract from the anchor part of the URI (e.g. for https://elements.heroku.com/addons/heroku-postgresql#standard-6 it is standard-6).

Upvotes: 1

Related Questions