1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-01 03:57:15 +00:00

Remove MySQL 5.7-related comments from database.yml.example (#43649).

git-svn-id: https://svn.redmine.org/redmine/trunk@24283 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2026-01-07 07:50:48 +00:00
parent 154cc9557a
commit 763760a48a

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"