This commit is contained in:
2025-09-08 12:51:15 -07:00
commit 574feb1ea1
62 changed files with 10425 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
from .base import BaseModel
from sqlalchemy.orm import relationship
class User(BaseModel):
__tablename__ = "users"
plans = relationship("Plan", back_populates="user")