aboutsummaryrefslogtreecommitdiffstats
path: root/models/db/collation.go
Commit message (Collapse)AuthorAgeFilesLines
* Refactor db package and remove unnecessary `DumpTables` (#32930)wxiaoguang2024-12-201-1/+1
|
* Refactor push mirror find and add check for updating push mirror (#32539)Lunny Xiao2024-11-181-1/+2
| | | Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* Partially enable MSSQL case-sensitive collation support (#29238)wxiaoguang2024-03-081-2/+1
| | | Follow #28662
* Recommend/convert to use case-sensitive collation for MySQL/MSSQL (#28662)wxiaoguang2024-01-101-0/+191
Mainly for MySQL/MSSQL. It is important for Gitea to use case-sensitive database charset collation. If the database is using a case-insensitive collation, Gitea will show startup error/warning messages, and show the errors/warnings on the admin panel's Self-Check page. Make `gitea doctor convert` work for MySQL to convert the collations of database & tables & columns. * Fix #28131 ## :warning: BREAKING :warning: It is not quite breaking, but it's highly recommended to convert the database&table&column to a consistent and case-sensitive collation.