You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Flask-Excel doesn't support sqlalchemy's Enum type.
Example:
import enum
class Animal(enum.Enum):
dog = "Dog"
cat = "Cat"
rabbit = "Rabbit"
class Child(db.Model):
name = db.Column(db.String(100))
age = db.Column(db.Integer)
animal = db.Column(db.Enum(Animal))