rajaramesh's picture
initial commit from machine
61f1726
raw
history blame contribute delete
261 Bytes
from sqlalchemy import Column, Integer, String
from database import Base
class User(Base):
__tablename__ = 'users'
id = Column(Integer, primary_key=True, index=True)
username = Column(String)
email = Column(String)
password = Column(String)