From e911b595cbfb2da2d607d85ac25a5321f1e3dd32 Mon Sep 17 00:00:00 2001 From: ineanto Date: Thu, 5 Oct 2023 15:42:01 +0200 Subject: [PATCH] feat(storage): add mysql switch --- src/main/resources/config.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index 0f162c9..9b854cd 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -21,9 +21,13 @@ customLocale: false # This configuration section manages SQL. sql: # Indicates wherever the data will be stored locally - # inside a .json file or in a SQL database. + # inside a .json file or in an SQL database. # Accepted values: false (Disabled), true (Enabled) enabled: false + # Toggles between the MariaDB and MySQL drivers. + # If you use the MySQL database engine, switch this to off. + # Accepted values: false (Disabled), true (Enabled) + mariadb: true # SQL database's address # Accepted values: valid IP address (e.g. localhost, 127.0.0.1) address: "localhost"