From 763760a48a0413734abba906fa38144c1dd2575e Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Wed, 7 Jan 2026 07:50:48 +0000 Subject: [PATCH] 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 --- config/database.yml.example | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/config/database.yml.example b/config/database.yml.example index 9fdccac06..e7963e887 100644 --- a/config/database.yml.example +++ b/config/database.yml.example @@ -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"