Update: main.py and models.py had incorrect imports

This commit is contained in:
2025-11-16 19:34:19 +01:00
parent 1186c91dcf
commit 0eacb12c73
2 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
from sqlalchemy import Column, Integer, String, Text, ForeignKey
from sqlalchemy.orm import relationship
from .database import Base
from database import Base
class User(Base):
__tablename__ = "users"