added more pomidoro

This commit is contained in:
2026-06-09 11:54:32 +03:00
parent 244935e4ac
commit c8599b3d13
20 changed files with 817 additions and 91 deletions
+2
View File
@@ -27,8 +27,10 @@ SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
def init_db() -> None:
from app.db import models # noqa: F401
from app.db.migrate import run_migrations
Base.metadata.create_all(bind=engine)
run_migrations()
def get_db() -> Generator[Session, None, None]: