1
0
Fork 0
mirror of https://github.com/Findus23/se-simulator.git synced 2024-09-19 15:53:45 +02:00

completly change db name

This commit is contained in:
Lukas Winkler 2018-03-28 16:01:45 +02:00
parent 2b26133bce
commit a6df3fe24f

2
app.py
View file

@ -6,7 +6,7 @@ from playhouse.pool import PooledMySQLDatabase
import config
DATABASE = PooledMySQLDatabase("stackdata", **config.db)
DATABASE = PooledMySQLDatabase("se-simulator", **config.db)
# Create a Flask WSGI app and configure it using values from the module.