diff options
author | Ikko Ashimine <eltociear@gmail.com> | 2021-04-27 23:25:24 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-27 16:25:24 +0200 |
commit | 0bc909687af6d5176318fc82db8b497dfff040e1 (patch) | |
tree | d3f837bd46ee45ced8a4d7f494b17831d01dfa22 /lib | |
parent | d0fc69d7213cab03c57947cac94bad1fd9cc6dba (diff) |
Fix typo in db.rake (#16126)
occured -> occurred
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tasks/db.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/db.rake b/lib/tasks/db.rake index 7e6c1c8fc..b2a0d61de 100644 --- a/lib/tasks/db.rake +++ b/lib/tasks/db.rake @@ -22,7 +22,7 @@ namespace :db do unless %w(C POSIX).include?(ActiveRecord::Base.connection.select_one('SELECT datcollate FROM pg_database WHERE datname = current_database();')['datcollate']) warn <<~WARNING Your database collation is susceptible to index corruption. - (This warning does not indicate that index corruption has occured and can be ignored) + (This warning does not indicate that index corruption has occurred and can be ignored) (To learn more, visit: https://docs.joinmastodon.org/admin/troubleshooting/index-corruption/) WARNING end |