From 845d16dd048159591a8c36e365ff5a94878edd5a Mon Sep 17 00:00:00 2001 From: games647 Date: Tue, 2 Aug 2022 10:40:00 +0200 Subject: [PATCH] Simplify storage driver setting --- core/src/main/resources/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main/resources/config.yml b/core/src/main/resources/config.yml index 1db567dd..8ac92822 100644 --- a/core/src/main/resources/config.yml +++ b/core/src/main/resources/config.yml @@ -285,14 +285,14 @@ verifyClientKeys: false # Recommended is the use of MariaDB (a better version of MySQL) # Single file SQLite database -driver: 'org.sqlite.JDBC' +driver: 'sqlite' # File location database: '{pluginDir}/FastLogin.db' # MySQL/MariaDB # If you want to enable it, uncomment only the lines below; this not this line. -# If on velocity use 'fastlogin.mariadb.jdbc.Driver' as driver -#driver: 'com.mysql.jdbc.Driver' +# If on velocity use 'mariadb' as driver +#driver: 'mysql' #host: '127.0.0.1' #port: 3306 #database: 'fastlogin'