base logic

This commit is contained in:
IluaAir
2025-07-06 11:58:45 +03:00
parent 817a799ef5
commit 4de11f4149
23 changed files with 149 additions and 17 deletions

View File

@@ -1,9 +1,9 @@
from typing import Optional, TYPE_CHECKING
from sqlalchemy import String, BigInteger, Integer, Boolean, VARCHAR
from sqlalchemy import String, BigInteger, Integer, Boolean
from sqlalchemy.orm import Mapped, mapped_column, relationship
from src.db.database import Base
from src.core.database import Base
if TYPE_CHECKING:
from src.models.tasks import TasksORM