Skip to content

Commit

Permalink
Merge pull request #2173 from ISAWASHUN/feature/#1876
Browse files Browse the repository at this point in the history
  • Loading branch information
logica0419 committed Jan 1, 2024
2 parents f37f6ca + 8967c81 commit f56bcca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ services:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: traq
# conohaのDBのデフォルトCharsetはutf8
command: mysqld --character-set-server=utf8 --collation-server=utf8_general_ci
command: mysqld --character-set-server=utf8mb4 --collation-server=utf8mb4_general_ci
expose:
- "3306"
ports:
Expand Down
2 changes: 1 addition & 1 deletion dev/bin/up-test-db.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ if docker ps --all | grep ${containername} > /dev/null; then
else
echo "create ${containername} docker container"
docker run --name ${containername} -p ${port}:3306 -e MYSQL_ROOT_PASSWORD=password -e MYSQL_DATABASE=traq -d mariadb:10.6.4 \
mysqld --character-set-server=utf8 --collation-server=utf8_general_ci
mysqld --character-set-server=utf8mb4 --collation-server=utf8mb4_general_ci
fi

0 comments on commit f56bcca

Please sign in to comment.