5/app/api/v1/models/teams.py
2025-03-20 13:05:13 +01:00

9 lines
271 B
Python

from sqlalchemy import Column, Integer, String
from app.api.db.database import Base
class Teams(Base):
__tablename__ = "teams"
id = Column(Integer, primary_key=True, index=True)
name = Column(String, unique=True, index=True)
description = Column(String)