From 8c33b540374b1d93c2013e16eaa29615e4c4db9b Mon Sep 17 00:00:00 2001 From: Schneems Date: Fri, 17 May 2024 10:04:37 -0500 Subject: [PATCH] Update database size --- test/fixtures/rails_4/rundoc.md | 12 +++++------- test/fixtures/rails_5/rundoc.md | 2 +- test/fixtures/rails_6/rundoc.md | 2 +- test/fixtures/rails_7/rundoc.md | 2 +- 4 files changed, 8 insertions(+), 10 deletions(-) diff --git a/test/fixtures/rails_4/rundoc.md b/test/fixtures/rails_4/rundoc.md index b532660..8a596b8 100644 --- a/test/fixtures/rails_4/rundoc.md +++ b/test/fixtures/rails_4/rundoc.md @@ -252,13 +252,11 @@ Provision a Postgresql database using Add-ons. >A `mini` Postgres size costs [$5 a month, prorated to the minute](https://elements.heroku.com/addons/heroku-postgresql). At the end of this tutorial, you will be prompted to [delete your database](https://devcenter.heroku.com/articles/heroku-postgresql#removing-the-add-on) to minimize costs. ```term -$ heroku addons:create heroku-postgresql:mini -Creating heroku-postgresql:mini on ⬢ shrouded-anchorage-34700... $5/month -Database has been created and is available - ! This database is empty. If upgrading, you can transfer - ! data from another database with pg:copy - -Created postgresql-encircled-75487 as DATABASE_URL +$ heroku addons:create heroku-postgresql:essential-0 +Creating heroku-postgresql:essential-0 on ⬢ shrouded-anchorage-34700... ~$0.007/hour (max $5/month) +Database should be available soon +postgresql-encircled-75487 is being created in the background. The app will restart when complete... +Use heroku addons:info postgresql-encircled-75487 to check creation progress Use heroku addons:docs heroku-postgresql to view documentation ``` diff --git a/test/fixtures/rails_5/rundoc.md b/test/fixtures/rails_5/rundoc.md index feb8a45..066d7ce 100644 --- a/test/fixtures/rails_5/rundoc.md +++ b/test/fixtures/rails_5/rundoc.md @@ -249,7 +249,7 @@ Provision a Postgresql database using Add-ons. >A `mini` Postgres size costs [$5 a month, prorated to the minute](https://elements.heroku.com/addons/heroku-postgresql). At the end of this tutorial, you will be prompted to [delete your database](https://devcenter.heroku.com/articles/heroku-postgresql#removing-the-add-on) to minimize costs. ```term -:::>> $ heroku addons:create heroku-postgresql:mini +:::>> $ heroku addons:create heroku-postgresql:essential-0 ``` Your Heroku app now has access to a Postgresql database. The credentials are stored in the `DATABASE_URL` environment variable, which Rails will connect to by convention. diff --git a/test/fixtures/rails_6/rundoc.md b/test/fixtures/rails_6/rundoc.md index a9130d0..e7a8cef 100644 --- a/test/fixtures/rails_6/rundoc.md +++ b/test/fixtures/rails_6/rundoc.md @@ -279,7 +279,7 @@ Provision a [Heroku Postgres](https://devcenter.heroku.com/articles/heroku-postg >A `mini` Postgres size costs [$5 a month, prorated to the minute](https://elements.heroku.com/addons/heroku-postgresql). At the end of this tutorial, we prompt you to [delete your database](https://devcenter.heroku.com/articles/heroku-postgresql#removing-the-add-on) to minimize costs. ```term -:::>> $ heroku addons:create heroku-postgresql:mini +:::>> $ heroku addons:create heroku-postgresql:essential-0 ``` Your Heroku app can now access this Postgres database. The `DATABASE_URL` environment variable stores your credentials, which Rails connects to by convention. diff --git a/test/fixtures/rails_7/rundoc.md b/test/fixtures/rails_7/rundoc.md index 4daf629..b308edc 100644 --- a/test/fixtures/rails_7/rundoc.md +++ b/test/fixtures/rails_7/rundoc.md @@ -251,7 +251,7 @@ Provision a [Heroku Postgres](https://devcenter.heroku.com/articles/heroku-postg >A `mini` Postgres size costs [$5 a month, prorated to the minute](https://elements.heroku.com/addons/heroku-postgresql). At the end of this tutorial, we prompt you to [delete your database](https://devcenter.heroku.com/articles/heroku-postgresql#removing-the-add-on) to minimize costs. ```term -:::>> $ heroku addons:create heroku-postgresql:mini +:::>> $ heroku addons:create heroku-postgresql:essential-0 ``` Your Heroku app can now access this Postgres database. The `DATABASE_URL` environment variable stores your credentials, which Rails connects to by convention.