It's baseball, not ghostball :)

This commit is contained in:
2022-11-12 01:00:24 -06:00
parent 512b3b05d2
commit a774d0a0fc
4 changed files with 7 additions and 7 deletions

View File

@@ -22,7 +22,7 @@ from peewee import (
)
# User can provide path to database, or it will be put next to main.py
DATABASE = os.environ.get("database_path", os.getcwd() + "/ghostball.db")
DATABASE = os.environ.get("database_path", os.getcwd() + "/baseball.db")
database = SqliteDatabase(DATABASE, pragmas={"foreign_keys": 1})