diff options
author | Vipul A M <vipulnsward@gmail.com> | 2016-07-02 15:06:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-02 15:06:38 -0700 |
commit | 6a77398cc194070da00dc8e5bea773fa7b792444 (patch) | |
tree | d458cfb1d3aad6b4a6e139f0c31acfe81a7b256d | |
parent | a468774cc17013e340d2ab121d19058652b389ab (diff) | |
parent | 5d9d309097217b9b88f2e9365cd9d295feb23d01 (diff) | |
download | rails-6a77398cc194070da00dc8e5bea773fa7b792444.tar.gz rails-6a77398cc194070da00dc8e5bea773fa7b792444.tar.bz2 rails-6a77398cc194070da00dc8e5bea773fa7b792444.zip |
Merge pull request #25657 from htanata/fix_typo
Fix typo: accidently -> accidentally. [ci skip]
-rw-r--r-- | activerecord/test/cases/migration/foreign_key_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/migration/foreign_key_test.rb b/activerecord/test/cases/migration/foreign_key_test.rb index 49a8fa241f..4237e89731 100644 --- a/activerecord/test/cases/migration/foreign_key_test.rb +++ b/activerecord/test/cases/migration/foreign_key_test.rb @@ -233,7 +233,7 @@ module ActiveRecord end add_foreign_key :houses, :cities, column: "city_id" - # remove and re-add to test that schema is updated and not accidently cached + # remove and re-add to test that schema is updated and not accidentally cached remove_foreign_key :houses, :cities add_foreign_key :houses, :cities, column: "city_id", on_delete: :cascade end |