9 lines
271 B
Python
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) |