add exchange table
All checks were successful
Backend CI / unit-test (push) Successful in 35s

This commit is contained in:
2025-09-22 14:33:32 +02:00
parent 76cc967c42
commit 1fbc93353d
17 changed files with 446 additions and 92 deletions

View File

@@ -58,7 +58,8 @@ class Database:
event.listen(self._engine, "connect", _enable_sqlite_pragmas)
def init_db(self) -> None:
db_migration.run_migrations(self._engine)
# db_migration.run_migrations(self._engine)
pass
def get_session(self) -> Generator[Session, None, None]:
session = Session(self._engine)