Commit 1cff7760 authored by Lee Boynton's avatar Lee Boynton Committed by GitHub

chore: Use utf8mb4 in mysql examples (#313)

parent ece5c5d9
......@@ -71,11 +71,11 @@ module "db" {
parameters = [
{
name = "character_set_client"
value = "utf8"
value = "utf8mb4"
},
{
name = "character_set_server"
value = "utf8"
value = "utf8mb4"
}
]
......
......@@ -98,11 +98,11 @@ module "db" {
parameters = [
{
name = "character_set_client"
value = "utf8"
value = "utf8mb4"
},
{
name = "character_set_server"
value = "utf8"
value = "utf8mb4"
}
]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment