File size: 258 Bytes
ba19a97
1f074d8
ba19a97
 
 
 
1f074d8
ba19a97
1f074d8
1
2
3
4
5
6
7
8
9
from sqlalchemy import Column, Integer, String
from sqlalchemy.ext.declarative import declarative_base

Base = declarative_base()

class Team(Base):
    __tablename__ = 'teams'
    id = Column(Integer, primary_key=True)
    name = Column(String, unique=True)