We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 458f19a commit 7368bbdCopy full SHA for 7368bbd
activerecord/CHANGELOG.md
@@ -9,15 +9,15 @@
9
#or
10
ActiveRecord::Tasks::DatabaseTasks.structure_dump_flags = '--no-defaults --skip-add-drop-table'
11
```
12
-
+
13
And also use it passing a hash, with one or more keys, where the key
14
is the adapter
15
16
```ruby
17
ActiveRecord::Tasks::DatabaseTasks.structure_dump_flags = {
18
mysql2: ['--no-defaults', '--skip-add-drop-table'],
19
postgres: '--no-tablespaces'
20
- }
+ }
21
22
23
*Gustavo Gonzalez*
@@ -46,7 +46,7 @@
46
# => ActiveRecord::StrictLoadingViolationError
47
48
user = User.first
49
- user.stict_loading!(false)
+ user.strict_loading!(false)
50
user.articles
51
# => #<ActiveRecord::Associations::CollectionProxy>
52
0 commit comments