1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Format guide

This commit is contained in:
Rafael Mendonça França 2020-12-17 20:01:50 +00:00
parent 48fb7ed5a4
commit 6e22720311
No known key found for this signature in database
GPG key ID: FC23B6D0F1EEE948

View file

@ -287,7 +287,10 @@ Please refer to the [Changelog][active-record] for detailed changes.
User.where.not(name: "Jon", role: "admin")
# SELECT * FROM users WHERE NOT (name == 'Jon' AND role == 'admin')
* To use the new per-database connection handling applications must change `legacy_connection_handling` to false and remove deprecated accessors on `connection_handlers`. Public methods for `connects_to` and `connected_to` require no changes.
* To use the new per-database connection handling applications must change
`legacy_connection_handling` to false and remove deprecated accessors on
`connection_handlers`. Public methods for `connects_to` and `connected_to`
require no changes.
Active Storage
--------------