From 8286ab3a17a8209974be0c690b4f0a843e6dc9b7 Mon Sep 17 00:00:00 2001 From: George Thomas Date: Mon, 26 Jul 2021 00:44:59 +0100 Subject: [PATCH] Use same name for MariaDB database as PostgreSQL --- docs/configuration.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration.rst b/docs/configuration.rst index cb48ddce..b0733a8a 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -26,7 +26,7 @@ format used can be found on `the SQLAlchemy documentation`_. For example, if you're using MariaDB, use a configuration similar to the following:: - SQLALCHEMY_DATABASE_URI = 'mysql+pymysql://user:pass@localhost/dbname' + SQLALCHEMY_DATABASE_URI = 'mysql+pymysql://user:pass@localhost/mydb' If you're using PostgreSQL, your client must use utf8. Unfortunately, PostgreSQL default is to use ASCII. Either change your client settings,