From ae30cc7615acb0a2f57b5635b9704f2f0259d22a Mon Sep 17 00:00:00 2001 From: Adam Cooke Date: Tue, 27 Feb 2024 19:04:40 +0000 Subject: [PATCH] fix: ensure encoding is set for message db --- lib/postal/config_schema.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/postal/config_schema.rb b/lib/postal/config_schema.rb index 3cf5413..fdf334b 100644 --- a/lib/postal/config_schema.rb +++ b/lib/postal/config_schema.rb @@ -171,6 +171,11 @@ module Postal description "The MariaDB password" end + string :encoding do + description "The encoding to use when connecting to the MariaDB database" + default "utf8mb4" + end + string :database_name_prefix do description "The MariaDB prefix to add to database names" default "postal"