mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-11-16 22:13:47 +08:00
修改mysql后不能使用不区分大小写的查询
This commit is contained in:
@@ -31,19 +31,16 @@ async function handle(
|
||||
{
|
||||
name: {
|
||||
contains: searchText,
|
||||
mode: "insensitive", // 不区分大小写
|
||||
},
|
||||
},
|
||||
{
|
||||
username: {
|
||||
contains: searchText,
|
||||
mode: "insensitive", // 不区分大小写
|
||||
},
|
||||
},
|
||||
{
|
||||
email: {
|
||||
contains: searchText,
|
||||
mode: "insensitive", // 不区分大小写
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user