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 3 additions and 2 deletions
Showing only changes of commit 59915be661 - 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,6 +16,7 @@ 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: