refactor(backend): solve copilot comments

This commit is contained in:
2025-09-24 20:15:25 +02:00
parent 106497e791
commit 615803de2d
2 changed files with 2 additions and 2 deletions

View File

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

View File

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