Skip to content

Instantly share code, notes, and snippets.

@xnuinside
Last active March 19, 2020 22:27
Show Gist options
  • Save xnuinside/6cd40c30350425328613ba77b8ed52b5 to your computer and use it in GitHub Desktop.
Save xnuinside/6cd40c30350425328613ba77b8ed52b5 to your computer and use it in GitHub Desktop.
SQLAlchemy_classic_model_class_SAMPLE
class User(Base):
__tablename__ = 'users'
id = Column(Integer, primary_key=True)
name = Column(String)
fullname = Column(String)
nickname = Column(String)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment