Skip to content

Commit

Permalink
Consistently use "utf8mb4_general_ci" as database collation
Browse files Browse the repository at this point in the history
  • Loading branch information
ctippler authored and brusch committed Feb 12, 2024
1 parent abf65b3 commit 4cd83c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/ci/files/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ services:
db:
image: ${DOCKER_DATABASE}
working_dir: /application
command: [ mysqld, --log_bin_trust_function_creators=1, --character-set-server=utf8mb4, --collation-server=utf8mb4_unicode_ci, --innodb-file-per-table=1 ]
command: [ mysqld, --log_bin_trust_function_creators=1, --character-set-server=utf8mb4, --collation-server=utf8mb4_general_ci, --innodb-file-per-table=1 ]
volumes:
- pimcore-demo-database:/var/lib/mysql
environment:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
db:
image: mariadb:10.11
working_dir: /application
command: [ mysqld, --character-set-server=utf8mb4, --collation-server=utf8mb4_unicode_ci, --innodb-file-per-table=1 ]
command: [ mysqld, --character-set-server=utf8mb4, --collation-server=utf8mb4_general_ci, --innodb-file-per-table=1 ]
volumes:
- pimcore-demo-database:/var/lib/mysql
environment:
Expand Down

0 comments on commit 4cd83c2

Please sign in to comment.