mirror of
https://github.com/sstent/AICyclingCoach.git
synced 2026-01-25 16:41:58 +00:00
7 lines
180 B
Python
7 lines
180 B
Python
from .base import BaseModel
|
|
from sqlalchemy.orm import relationship
|
|
|
|
class User(BaseModel):
|
|
__tablename__ = "users"
|
|
|
|
plans = relationship("Plan", back_populates="user") |