5_administrator_control #49

Merged
waifu merged 8 commits from 5_administrator_control into dev 2025-06-12 20:34:08 -07:00
2 changed files with 2 additions and 3 deletions
Showing only changes of commit 1368c907a2 - Show all commits

4
.gitignore vendored
View file

@ -183,7 +183,7 @@ cython_debug/
# Custom stuff
gacha_game*.db
gacha_game*.db*
gacha_game*.db.*
config*.ini
.idea
.idea

View file

@ -16,7 +16,6 @@ def connect() -> None:
CONNECTION = sqlite3.connect(DB_PATH, autocommit=True)
CONNECTION.row_factory = sqlite3.Row
CURSOR = CONNECTION.cursor()
CURSOR.execute('pragma journal_mode=wal')
def setup_administrators() -> None: