Created
August 20, 2018 04:22
-
-
Save marknagelberg/8472a6e582dd07f14bae7d03bdd6b1ab to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from . import db | |
class Name(db.Model): | |
id = db.Column(db.Integer, primary_key=True) | |
name = db.Column(db.String(128), nullable=False) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment