moli2022
Results
1
comments of
moli2022
## MySQL 数据配置 ```sql create database wizard default character set utf8mb4 collate utf8mb4_bin ; create user 'wizard'@'%' identified by 'wizard' ; grant all privileges on wizard.* to 'wizard'@'%' ; flush...