refactor(backend): solve copilot comments

This commit is contained in:
2025-09-24 20:10:31 +02:00
parent 3c8ad5f74f
commit f4892a69d5
12 changed files with 14 additions and 50 deletions

View File

@@ -1,2 +0,0 @@
# SQLAlchemy modely

View File

@@ -1,5 +1,5 @@
from sqlalchemy import Column, Integer, String, Float
from ..core.db import Base
from app.core.db import Base
class Transaction(Base):
__tablename__ = "transaction"

View File

@@ -1,6 +1,6 @@
from sqlalchemy import Column, String
from fastapi_users.db import SQLAlchemyBaseUserTableUUID
from ..core.base import Base # Import Base z base.py
from app.core.base import Base # Import Base z base.py
class User(SQLAlchemyBaseUserTableUUID, Base):
first_name = Column(String(length=100), nullable=True)