Created
November 20, 2017 21:56
-
-
Save mikeywaites/ce45acec7f56cd9a2fe79c9d18a0c741 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 .base import db, BaseMixin | |
__all__ = ['Character'] | |
class Character(BaseMixin, db.Model): | |
__tablename__ = 'character' | |
name = db.Column(db.Unicode(255), nullable=False) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment