mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-06 19:25:34 +00:00

+ delete older migrations ... oops + change migratrions from "migrations" to "dbmigrations" + restructure migrations, order them based on release version + add a utils/decorators.py file with a coroutine decorator
32 lines
783 B
Python
32 lines
783 B
Python
"""
|
|
Reads and saves the latest database migrations version.
|
|
"""
|
|
|
|
from app.db.sqlite.utils import SQLiteManager
|
|
|
|
|
|
class MigrationManager:
|
|
@staticmethod
|
|
def get_version() -> int:
|
|
"""
|
|
Returns the latest userdata database version.
|
|
"""
|
|
sql = "SELECT * FROM dbmigrations"
|
|
with SQLiteManager() as cur:
|
|
cur.execute(sql)
|
|
ver = int(cur.fetchone()[1])
|
|
cur.close()
|
|
|
|
return ver
|
|
|
|
# 👇 Setters 👇
|
|
@staticmethod
|
|
def set_version(version: int):
|
|
"""
|
|
Sets the userdata pre-init database version.
|
|
"""
|
|
sql = "UPDATE dbmigrations SET version = ? WHERE id = 1"
|
|
with SQLiteManager() as cur:
|
|
cur.execute(sql, (version,))
|
|
cur.close()
|