Fix typo in the CHANGELOG

This commit is contained in:
Rafael Mendonça França 2021-01-26 23:51:17 +00:00
parent 458f19a0f7
commit 7368bbd404
No known key found for this signature in database
GPG Key ID: FC23B6D0F1EEE948
1 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@
#or
ActiveRecord::Tasks::DatabaseTasks.structure_dump_flags = '--no-defaults --skip-add-drop-table'
```
And also use it passing a hash, with one or more keys, where the key
is the adapter
@ -17,7 +17,7 @@
ActiveRecord::Tasks::DatabaseTasks.structure_dump_flags = {
mysql2: ['--no-defaults', '--skip-add-drop-table'],
postgres: '--no-tablespaces'
}
}
```
*Gustavo Gonzalez*
@ -46,7 +46,7 @@
# => ActiveRecord::StrictLoadingViolationError
user = User.first
user.stict_loading!(false)
user.strict_loading!(false)
user.articles
# => #<ActiveRecord::Associations::CollectionProxy>
```