I'm on MySQL and trying to create a type that stores enums as
VARCHAR(255). However, the following code still issues an ENUM() DDL.
What am I doing wrong here?

class StringEnum(types.TypeDecorator):
    impl = types.Enum

    def __init__(self, *args, **kwargs):
        super(StringEnum, self).__init__(*args, native_enum=False,
**kwargs)
        self.length = 255

-- 
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalch...@googlegroups.com.
To unsubscribe from this group, send email to 
sqlalchemy+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en.

Reply via email to