diff --git a/database/query.md b/database/query.md index 43dee05d..c4e96504 100644 --- a/database/query.md +++ b/database/query.md @@ -765,7 +765,7 @@ You may enable or disable the duplicate cache with either the `enableDuplicateCa Db::table('users')->enableDuplicateCache()->get(); ``` -If a query is stored in the cache, it will automatically be cleared when an insert, update, delete, or truncate statement is used. However you may clear the cache manually using the `flushDuplicateCache` method. +If a query is stored in the cache, it will automatically be cleared when an insert, update, delete, upsert, or truncate statement is used. However you may clear the cache manually using the `flushDuplicateCache` method. ```php Db::flushDuplicateCache();