Change flask sqlalchemy characterset to utf8mb4

This commit is contained in:
Jeremy Zhang 2017-06-10 03:21:44 +00:00
parent 80c36e7d72
commit fbe41a9a35

View File

@ -11,7 +11,7 @@ import os
os.chdir(config['app-location'])
app = Flask(__name__, static_folder="static")
app.config['SQLALCHEMY_DATABASE_URI'] = config['database-uri']
app.config['SQLALCHEMY_DATABASE_URI'] = config['database-uri'] + "?charset=utf8mb4"
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False # Suppress the warning/no need this on for now.
app.config['RATELIMIT_HEADERS_ENABLED'] = True
app.config['SQLALCHEMY_POOL_RECYCLE'] = 250