Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[ci skip] Expand on disable-prevent-writes changelog entry
  • Loading branch information
HParker committed Jun 17, 2021
1 parent e2585a2 commit cb69904
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion activerecord/CHANGELOG.md
Expand Up @@ -14,7 +14,14 @@

* Disable automatic write protection on replicas.

Write protection is no longer automatically enabled for replicas. Write protection should be enabled by the database user settings.
Write protection is no longer automatically enabled for replicas.
You can manually prevent writes in your app with
`while_preventing_writes`. To automatically disable all writes on
your replica, configure the database user you are using to connect
to your replica to prevent writes. How you configure this is
specific to which database adapter you are using, but it usually
involves only granting the database user permission to do `SELECT`
queries.

*Adam Hess*

Expand Down

0 comments on commit cb69904

Please sign in to comment.