tmpl-fastapi/app/sql/models.py
2023-02-27 20:11:55 +04:00

12 lines
246 B
Python

from sqlalchemy import Column, String, Integer
from . import Base
class User(Base):
__tablename__ = 'users'
id = Column(Integer, primary_key=True)
email = Column(String(32))
name = Column(String(32))
age = Column(Integer)