Merged r24283 from trunk to 6.1-stable (#43649).

git-svn-id: https://svn.redmine.org/redmine/branches/6.1-stable@24418 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2026-02-16 09:34:04 +00:00
parent b381dade14
commit bc19a696ed

View File

@@ -1,4 +1,4 @@
# Default setup is given for MySQL 5.7.7 or later.
# Default setup is given for MySQL 8.0 or later.
# Examples for PostgreSQL, SQLite3 and SQL Server can be found at the end.
# Line indentation must be 2 spaces (no tabs).
@@ -10,12 +10,10 @@ production:
host: localhost
username: root
password: ""
# Use "utf8" instead of "utfmb4" for MySQL prior to 5.7.7
encoding: utf8mb4
variables:
# Recommended `transaction_isolation` for MySQL to avoid concurrency issues is
# `READ-COMMITTED`.
# In case of MySQL lower than 8, the variable name is `tx_isolation`.
# See https://www.redmine.org/projects/redmine/wiki/MySQL_configuration
transaction_isolation: "READ-COMMITTED"
@@ -26,7 +24,6 @@ development:
host: localhost
username: root
password: ""
# Use "utf8" instead of "utfmb4" for MySQL prior to 5.7.7
encoding: utf8mb4
variables:
transaction_isolation: "READ-COMMITTED"
@@ -41,7 +38,6 @@ test:
host: localhost
username: root
password: ""
# Use "utf8" instead of "utfmb4" for MySQL prior to 5.7.7
encoding: utf8mb4
variables:
transaction_isolation: "READ-COMMITTED"