Navigation Menu

Skip to content

Commit

Permalink
Add missing punctuations in activerecord CHANGELOG [ci-skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
taha-husain authored and Taha Husain committed Oct 26, 2021
1 parent aa0c418 commit 3007d79
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions activerecord/CHANGELOG.md
Expand Up @@ -270,10 +270,10 @@

The behavior now is:

`columns`: (unchanged) raises a db error if the table does not exist
`columns_hash`: (unchanged) raises a db error if the table does not exist
`primary_keys`: (unchanged) returns `nil` if the table does not exist
`indexes`: (changed for mysql2) returns `[]` if the table does not exist
`columns`: (unchanged) raises a db error if the table does not exist.
`columns_hash`: (unchanged) raises a db error if the table does not exist.
`primary_keys`: (unchanged) returns `nil` if the table does not exist.
`indexes`: (changed for mysql2) returns `[]` if the table does not exist.

*Eileen M. Uchitelle*

Expand Down Expand Up @@ -418,7 +418,7 @@
* Add option to disable schema dump per-database.

Dumping the schema is on by default for all databases in an application. To turn it off for a
specific database use the `schema_dump` option:
specific database, use the `schema_dump` option:

```yaml
# config/database.yml
Expand Down Expand Up @@ -617,7 +617,7 @@

* Fix compatibility with `psych >= 4`.

Starting in Psych 4.0.0 `YAML.load` behaves like `YAML.safe_load`. To preserve compatibility
Starting in Psych 4.0.0 `YAML.load` behaves like `YAML.safe_load`. To preserve compatibility,
Active Record's schema cache loader and `YAMLColumn` now uses `YAML.unsafe_load` if available.

*Jean Boussier*
Expand Down Expand Up @@ -1147,8 +1147,8 @@

*Eileen M. Uchitelle*, *John Crepezzi*

* Support hash config for `structure_dump_flags` and `structure_load_flags` flags
Now that Active Record supports multiple databases configuration
* Support hash config for `structure_dump_flags` and `structure_load_flags` flags.
Now that Active Record supports multiple databases configuration,
we need a way to pass specific flags for dump/load databases since
the options are not the same for different adapters.
We can use in the original way:
Expand Down

0 comments on commit 3007d79

Please sign in to comment.