Skip to content

Commit

Permalink
Highlight database.yml as code block in multiple databases guide [c…
Browse files Browse the repository at this point in the history
…i skip]
  • Loading branch information
carlosantoniodasilva committed Aug 16, 2019
1 parent 5264bbf commit 5d43e92
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions guides/source/active_record_multiple_databases.md
Expand Up @@ -43,7 +43,7 @@ Let's say we have an application with a single primary database and we need to a
new database for some new tables we're adding. The name of the new database will be
"animals".

The database.yml looks like this:
The `database.yml` looks like this:

```yaml
production:
Expand All @@ -53,7 +53,7 @@ production:
```

Let's add a replica for the primary, a new writer called animals and a replica for that
as well. To do this we need to change our database.yml from a 2-tier to a 3-tier config.
as well. To do this we need to change our `database.yml` from a 2-tier to a 3-tier config.

```yaml
production:
Expand Down Expand Up @@ -128,7 +128,7 @@ clients have a limit to the number of open connections there can be and if you d
multiply the number of connections you have since Rails uses the model class name for the
connection specification name.

Now that we have the database.yml and the new model set up it's time to create the databases.
Now that we have the `database.yml` and the new model set up it's time to create the databases.
Rails 6.0 ships with all the rails tasks you need to use multiple databases in Rails.

You can run `rails -T` to see all the commands you're able to run. You should see the following:
Expand Down Expand Up @@ -242,7 +242,7 @@ that were connected via `connects_to` with the role name of `reading`.

There also may be a case where you have a database that you don't always want to connect to
on application boot but may need for a slow query or analytics. After defining that database
in the database.yml you can connect by passing a database argument to `connected_to`
in the `database.yml` you can connect by passing a database argument to `connected_to`

```ruby
ActiveRecord::Base.connected_to(database: { reading_slow: :animals_slow_replica }) do
Expand Down

0 comments on commit 5d43e92

Please sign in to comment.