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

Fix typo: accidently -> accidentally.

This commit is contained in:
Hendy Tanata 2016-07-02 12:38:21 -07:00
parent a468774cc1
commit 5d9d309097

View file

@ -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