Skip to content

Instantly share code, notes, and snippets.

@mikeywaites
Created November 20, 2017 21:56
Show Gist options
  • Save mikeywaites/ce45acec7f56cd9a2fe79c9d18a0c741 to your computer and use it in GitHub Desktop.
Save mikeywaites/ce45acec7f56cd9a2fe79c9d18a0c741 to your computer and use it in GitHub Desktop.
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